/*
Theme Name: bablo
Theme URI: https://bablo.credit/
Author: bablo.credit
Description: Lightweight lead-generation theme for bablo.credit.
Version: 2.0.4
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: bablo
*/

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/nunito-v25-cyrillic_latin-300.woff2') format('woff2'),
       url('/fonts/nunito-v25-cyrillic_latin-300.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/nunito-v25-cyrillic_latin-regular.woff2') format('woff2'),
       url('/fonts/nunito-v25-cyrillic_latin-regular.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/nunito-v25-cyrillic_latin-500.woff2') format('woff2'),
       url('/fonts/nunito-v25-cyrillic_latin-500.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/nunito-v25-cyrillic_latin-600.woff2') format('woff2'),
       url('/fonts/nunito-v25-cyrillic_latin-600.woff') format('woff');
}

@font-face {
  font-display: swap;
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/nunito-v25-cyrillic_latin-700.woff2') format('woff2'),
       url('/fonts/nunito-v25-cyrillic_latin-700.woff') format('woff');
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

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

body {
  font-family: Nunito;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  overflow-x: hidden;
}
.overflow-hidden {
    overflow: hidden!important;
}

address {
  font-style: normal;
  line-height: inherit;
}

input {
	outline: none;
}

ul li,
ol li {
	list-style: none;
}

a {
  color: #007bff;
  background-color: transparent;
  display: inline-block;
  text-decoration: none !important;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.header {
    position: relative;
    width: 100%;
    z-index: 999;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 5px 19px rgba(0,0,0,.0837249);
}

.header-body {
    position: relative;
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}
.header__logo {
	margin-right: 40px;
}
.header__logo img {
	max-width: 150px;
}
.header-block_mobile {
    display: flex;
	justify-content: space-between;
    align-items: center;
}

.hamburger {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
}

.hamburger__line {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    border-radius: 3px;
    background: #73cbe1;
    transition: all .2s ease;
}

.hamburger__line:after, .hamburger__line:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 3px;
    background: #73cbe1;
    transition: all .3s ease;
}

.hamburger__line:before {
    top: -6px;
}

.hamburger__line:after {
    bottom: -6px;
}

.hamburger.is-active .hamburger__line {
  background-color: transparent;
  box-shadow: none;
}
.hamburger.is-active .hamburger__line:before {
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger__line:after {
  top: 50%;
  transform: rotate(-45deg);
}

.header-icon {
    width: 20px;
    cursor: pointer;
    position: relative;
}

.header-block {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-block_desktop {
    display: none;
}

.header-nav {
    width: 100%;
    display: none;
}

.header-nav__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 70px 15px 50px;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    min-width: 100%;
    max-width: 100%;
    transition: all .6s cubic-bezier(.945,.02,.27,.665);
    transform-origin: bottom left;
    background: #fff;
    z-index: 99;
}

.mobile-nav_active {
    left: 0;
}

.menu__item {
    text-align: center;
    margin: 0 0 20px;
}

.menu__link {
    color: #263238;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 10px;
    line-height: 17px;
}

.footer-top {
    background: #455a64;
    padding: 48px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.company {
    text-align: center;
}

.company__link {
    width: 100%;
    max-width: 100px;
    margin: 0 auto 16px;
}

.company__label {
    font: 11px Nunito;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
}

.footer-menu {
    margin: 32px 0;
}

.footer-menu__link {
    position: relative;
    margin-top: -1px;
    display: block;
    cursor: pointer;
    font: 14px Nunito;
    line-height: 17px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    padding: 12px 0;
    border-top: 1px solid #464f54;
    border-bottom: 1px solid #464f54;
}

.footer-button__link {
    color: #fff;
    border-radius: 8px;
}

.connection {
    margin-top: 38px;
}

.connection__item {
    position: relative;
    margin-bottom: 26px;
}

.connection__label {
    font: 16px Nunito;
    line-height: 20px;
    font-style: normal;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
}

.connection__link {
    font: 16px Nunito;
    line-height: 20px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.connection__item:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    background: #34454e;
    padding: 16px;
}

.footer-bottom__label {
    font: 11px Nunito;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}

.calc__range p {
	width: 100%;
}

.col-lg-12,
.col-lg-4,
.col-lg-6,
.col-md-12,
.col-md-4,
.col-md-6,
.col-sm-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
/* Общие стили для таблицы */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9em;
  line-height: 1.6;
  background-color: #fff;
}

.wp-block-table th,
.wp-block-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

/* Заголовки таблицы */
.wp-block-table th {
  background-color: #f4f4f4;
  color: #333;
}

/* Строки таблицы */
.wp-block-table tr:nth-child(even) {
  background-color: #f8f8f8;
}

/* Поведение при наведении */
.wp-block-table tr:hover {
  background-color: #f2f2f2;
}

/* Адаптивность */
@media screen and (max-width: 767px) {
  .wp-block-table table {
    width: auto;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (min-width: 576px) {
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.custom-control-input.is-valid:focus:not(:checked)
  ~ .custom-control-label::before,
.was-validated
  .custom-control-input:valid:focus:not(:checked)
  ~ .custom-control-label::before {
  border-color: #28a745;
}

.custom-control-input.is-invalid:focus:not(:checked)
  ~ .custom-control-label::before,
.was-validated
  .custom-control-input:invalid:focus:not(:checked)
  ~ .custom-control-label::before {
  border-color: #dc3545;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  font-size: 1rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn:disabled {
  opacity: 0.65;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.collapse:not(.show) {
  display: none;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-header {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

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

@media print {
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  .container,
  body {
    min-width: 992px !important;
  }
}

.mat-form-field-can-float
  .mat-input-server[label]:not(:label-shown)
  + .mat-form-field-label-wrapper
  .mat-form-field-label {
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.33334%;
}

.mat-form-field-appearance-legacy.mat-form-field-can-float
  .mat-input-server[label]:not(:label-shown)
  + .mat-form-field-label-wrapper
  .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px)
    translateZ(0.00102px);
  -ms-transform: translateY(-1.28123em) scale(0.75);
  width: 133.33335%;
}

@media print {
  .mat-form-field-appearance-legacy.mat-form-field-can-float
    .mat-input-server[label]:not(:label-shown)
    + .mat-form-field-label-wrapper
    .mat-form-field-label {
    transform: translateY(-1.2812em) scale(0.75);
  }
}

.mat-form-field-appearance-fill.mat-form-field-can-float
  .mat-input-server[label]:not(:label-shown)
  + .mat-form-field-label-wrapper
  .mat-form-field-label {
  transform: translateY(-0.59374em) scale(0.75);
  width: 133.33334%;
}

.mat-form-field-appearance-outline.mat-form-field-can-float
  .mat-input-server[label]:not(:label-shown)
  + .mat-form-field-label-wrapper
  .mat-form-field-label {
  transform: translateY(-1.59374em) scale(0.75);
  width: 133.33334%;
}

.mat-slider-thumb-label-text {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

@-webkit-keyframes cdk-text-field-autofill-end {
  /*!*/
}

@keyframes cdk-text-field-autofill-end {
  /*!*/
}

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  -webkit-animation-name: cdk-text-field-autofill-end;
  animation-name: cdk-text-field-autofill-end;
}

.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #fff;
}

.mat-autocomplete-panel
  .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}

.mat-accent .mat-slider-thumb,
.mat-accent .mat-slider-thumb-label,
.mat-accent .mat-slider-track-fill {
  background-color: #ff4081;
}

.mat-accent .mat-slider-thumb-label-text {
  color: #fff;
}

.mat-slider:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}

.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}

.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover
  .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7) 2px,
    transparent 0,
    transparent
  );
  background-image: -moz-repeating-linear-gradient(
    0.0001deg,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7) 2px,
    transparent 0,
    transparent
  );
}

a,
address,
body,
div,
h2,
h3,
h4,
h5,
h6,
html,
img,
li,
p,
section,
span,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

section {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Nunito;
  background: #fff;
}

img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

li {
  list-style-type: none;
}

a:active {
  color: #263238;
}

.container {
  max-width: 1170px !important;
}

.calculate_main .tabs-content .calculate-footer {
  display: flex;
  flex-direction: column-reverse;
}

.calculate_main .tabs-content .calculate-button {
  margin-bottom: 32px;
}

.calculate_main .calculate-footer {
  display: flex;
  flex-direction: column-reverse;
}

.calculate_main .calculate-button {
  margin-bottom: 32px;
  text-transform: uppercase;
}

.calculate_main .calculate-button .btn {
  background: #ff8a00;
}
.calculate_main .calculate-button .btn:hover {
	background: #73cbe1;
}

.calculate_main .mat-accent .mat-slider-thumb,
.calculate_main .mat-accent .mat-slider-thumb-label,
.calculate_main .mat-accent .mat-slider-track-fill {
  background-image: linear-gradient(#ff8a00, #ff8a00);
}

.calc__row {
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calc__block {
	display: flex;
    align-items: center;
}

#value-input {
	font-size: 16px;
	display: inline-block;
    width: 103px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0;
    color: #73cbe1;
    border: 1px solid #73cbe1;
    border-radius: 5px;
    margin-right: 17px;
    text-align: center;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type='number'] {
  -moz-appearance: textfield;
}
input[type='number']:focus,
input[type='number']:hover {
  -moz-appearance: number-input;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc__currency {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0;
}
.calc__title, .calc__title p {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0;
    margin-right: 10px;
}

.calc__range {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

input[type='range'] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    position: relative;
    outline: 0;
    cursor: pointer;
}

input[type='range']::before {
    position: absolute;
    content: '';
    width: var(--range);
    max-width: 100%;
    height: 100%;
    background: #73cbe1;
    border-radius: 25px;
}

input[type='range']::-webkit-slider-runnable-track {
  height: 8px;
  background-color: transparent;
  border: 1px solid #73cbe1;
  border-radius: 25px;
}
input[type='range']::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  background: #ff8a00;
  border-radius: 50%;
  -webkit-appearance: none;
  z-index: 5;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
input[type='range']::-webkit-slider-thumb:hover {
  background: #ff8a00;
}
input[type='range']::-webkit-slider-thumb:active {
  width: 27px;
  height: 27px;
}

.card {
  border: none !important;
}

.card-header {
  background: 0 0 !important;
  border: none !important;
  padding: 0 !important;
}

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

h3 {
  font-size: 20px;
  line-height: 30px;
  font-family: Nunito;
}

h2 {
  font-size: 24px;
  line-height: 29px;
  font-style: normal;
  font-weight: 800;
  font-family: Nunito;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
    line-height: 44px;
  }

  h3 {
    font-size: 24px;
    line-height: 26px;
  }
}

h4 {
  font-size: 18px;
  line-height: 26px;
  font-style: normal;
  font-weight: 800;
  font-family: Nunito;
}

p {
  font-family: Nunito;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3em;
  color: #333;
}

.btn {
  outline: 0;
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: 100%;
  text-align: center;
  color: #fff;
  font: 16px Nunito;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  padding: 16px 4px;
  background: #73cbe1;
}

.btn:hover {
  color: #fff;
}

.btn:focus {
  outline: 0;
}

.mat-accent .mat-slider-thumb,
.mat-accent .mat-slider-thumb-label,
.mat-accent .mat-slider-track-fill {
  background-image: linear-gradient(#6dccdd, #6dccdd);
}

.mat-slider-track-background {
  background: 0 0 !important;
}

.mat-slider {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 0 !important;
  outline: 0;
  vertical-align: middle;
}

.mat-slider-wrapper {
  border-radius: 8px;
}

.mat-slider-thumb {
  position: absolute;
  right: -20px !important;
  bottom: -14px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 8px solid #fff !important;
  transform: scale(8);
}

.mat-slider-thumb-label {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-radius 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mat-slider-horizontal {
  width: 100%;
}

.mat-slider-horizontal .mat-slider-wrapper {
  height: 8px !important;
  top: 23px;
  left: 8px;
  right: 8px;
  background: rgba(217, 217, 217, 0.5);
  mix-blend-mode: normal;
  border-radius: 8px;
}

.mat-slider-horizontal .mat-slider-wrapper::after {
  height: 8px !important;
  right: 0;
  top: 0;
}

.mat-slider-horizontal .mat-slider-track-fill,
.mat-slider-horizontal .mat-slider-track-wrapper {
  height: 8px !important;
  width: 100%;
  border-radius: 8px;
}

.mat-slider-horizontal .mat-slider-track-background {
  height: 12px !important;
  width: 100%;
}

.mat-slider-horizontal .mat-slider-ticks-container {
  height: 2px;
  width: 100%;
}

.mat-slider-focus-ring {
  background: 0 0 !important;
}

.stage {
  background: #f1f6ff;
  position: relative;
  padding: 10px 0 10px 0;
}
.stage-money {
  display: none;
}
.stage-calculate {
  position: relative;
  width: 100%;
  padding: 20px;
}

.info__block {
	padding-top: 50px;
	margin-bottom: 50px;
}
.info__block h1,
.info__block h2,
.info__block h3,
.info__block h4 {
  margin-bottom: 16px;
  text-align: center;
}
.info__block h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: 49px;
  letter-spacing: 0;
}
.info__block h2 {
  font-weight: 700;
  font-size: 33px;
  line-height: 37px;
  letter-spacing: 0;
  margin-top: 30px;
}
.info__block h3 {
  font-weight: 500;
  font-size: 29px;
  line-height: 32px;
  letter-spacing: 0;
}
.info__block h4 {
  font-weight: 500;
  font-size: 23px;
  line-height: 26px;
  letter-spacing: 0;
}
.info__block p {
  line-height: 20px;
  letter-spacing: 0;
  padding-bottom: 15px;
}

@media screen and (max-width: 1100px) {
  .stage:before {
    background-position: center center;
    background-size: cover;
  }
}
@media screen and (max-width: 992px) {
  .stage::before__wrap {
    justify-content: flex-start !important;
    align-items: flex-end !important;
  }
	.stage-calculate {
		padding: 20px 0 20px 0;
	}
}
@media screen and (max-width: 768px) {
  .stage:before {
    background: #74cce2;
  }
  .calc__title, .calc__title p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .stage-calculate {
    padding: 25px 0;
  }
}
@media screen and (min-width: 992px) {
	.header {
		padding: 14px 0;
	}
	.header-block {
		display: none;
	}
	.header-block_mobile {
		display: none;
	}
	.header-block_desktop {
		display: flex;
	}
	.header-nav {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.menu {
		display: flex;
	}
	.menu__item {
		margin: 0;
	}
	.menu__link {
		color: #263238;
		font-size: 14px;
		font-weight: 700;
		cursor: pointer;
		padding: 10px;
		line-height: 17px;
	}
	.mobile-nav {
		display: none;
	}
  .stage__wrap:before {
    background-position: left 16%;
  }
  .stage-calculate {
    padding: 25px 0 60px;
  }
}
@media screen and (max-width: 560px) {
  .stage-money {
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .info__block h1 {
    font-size: 24px;
    line-height: 27px;
  }
  .info__block h2 {
    font-size: 21px;
    line-height: 23px;
  }
  .info__block h3 {
    font-size: 22px;
    line-height: 1.3;
  }
  .info__block h4 {
    font-size: 16px;
    line-height: 18px;
  }
  .info__block p {
    text-align: left;
    line-height: 1.5;
  }
}
.manual {
  background: #fff;
  padding: 40px 0;
}
.manual-list {
  margin: 32px 0 0;
}
.manual__item {
  margin-bottom: 40px;
}
.manual__item:last-child {
  margin-bottom: 0;
}
.manual__img {
  display: block;
  max-width: 90%;
  margin: 0 auto;
}
.manual-description {
  text-align: center;
}
.manual-description__title {
  font: 18px Nunito;
  font-weight: 900;
  line-height: 26px;
  font-style: normal;
  margin-bottom: 16px;
}
.manual-description__text {
  font: 16px Nunito;
  font-weight: 600;
  line-height: 22px;
  font-style: normal;
  color: #333;
}
@media screen and (min-width: 768px) {
  .manual {
    padding: 60px 0;
  }
  .manual__item {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .manual {
    padding: 80px 0;
  }
}
.return {
  background: #e5e5e5;
  padding: 40px 0;
}
.return__title {
  margin-bottom: 32px;
}
.return-list__item {
  margin-bottom: 26px;
  display: flex;
  align-items: stretch;
}
.return-list__item:last-child {
  margin-bottom: 0;
}
.return-list__inner {
  height: 100%;
  position: relative;
  background: #fff;
  box-shadow: 0 5px 19px rgba(66, 90, 102, 0.114893);
  border-radius: 10px;
  padding: 40px 20px 36px 24px;
}
.return-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.return-icon {
  margin-right: 28px;
}
.return__info {
  font: 16px Nunito;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
  color: #333;
}
@media screen and (min-width: 768px) {
  .return {
    padding: 60px 0;
  }
  .return-list__item {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .return {
    padding: 80px 0;
  }
  .return__title {
    margin-bottom: 70px;
  }
}
.completion {
  background: #fff;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .completion {
    padding: 60px 0;
  }
}
@media screen and (min-width: 992px) {
  .completion {
    padding: 80px 0;
  }
}
.calculation {
  padding-top: 32px;
}
.calculation__item {
  margin-bottom: 30px;
}
.calculation__item:last-child {
  margin-bottom: 0;
}
.calculation__head {
  font: 16px Nunito;
  line-height: 19px;
  font-style: normal;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.calculation__text {
  font: 13px Nunito;
  line-height: 20px;
  font-style: normal;
  font-weight: 400;
  color: #333;
}
.service {
  padding: 40px 0 56px;
  border-bottom: 1px solid #c6d4d8;
}
.service__text {
  font: 16px Nunito;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #333;
}
@media screen and (min-width: 768px) {
  app-promoution-banner {
    display: none;
  }
}
.achives {
  margin: 70px 0 !important;
}
@media screen and (max-width: 768px) {
  .achives {
    margin: 30px 0 !important;
  }
}
.achives img {
  max-width: 630px;
}
.banner-img-info {
  opacity: 0.97;
  padding: 15px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
  color: #282828;
  background: #fff;
  border-radius: 10px;
  max-width: 650px;
  width: 100%;
  margin: 20px auto 30px;
}
@media screen and (max-width: 700px) {
  .stage__wrap {
    flex-direction: column;
  }
}

.tabs-header {
  display: flex;
  height: 58px;
}
.tabs-button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #73cbe1;
  text-shadow: 0 5px 19px rgba(66, 90, 102, 0.114893);
  border-radius: 10px 10px 0 0;
}
.tabs-button_active {
  background: #fff;
}
.tabs-button_active .tabs-button__label {
  background: radial-gradient(
    226.05% 347% at 12.12% -99.49%,
    #00fbe8 0,
    rgba(85, 146, 227, 0.765625) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tabs-button_active .tabs-button__icon svg {
  fill: #73cbe1;
}
.tabs-button__label {
  font: 14px Nunito;
  line-height: 20px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
}
.tabs-button__icon {
  margin-right: 12px;
}
.tabs-button__icon svg {
  fill: #fff;
}
@media screen and (min-width: 998px) {
  .tabs-button__label {
    font-size: 16px;
  }
  .tabs-button__icon {
    display: inline-block;
  }
}

.outcome {
  background: #f3f5f9;
  padding: 48px 0;
}
.outcome p {
  font-family: Nunito;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 20px;
}
.outcome__wrap {
  max-width: 896px;
  margin: 0 auto;
}
.outcome__wrap .home-title-28 {
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}
.outcome__item {
  margin-bottom: 52px;
}
.outcome__item:last-child {
  margin-bottom: 0;
}
.outcome__sub-text p, .outcome__sub-text li, .outcome li {
  font-family: Nunito;
  font-style: normal;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}
.outcome__sub-text h6, .outcome h6 {
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 15px;
}
.outcome__head, .outcome h2, .outcome h3, .outcome h4, .outcome h5 {
  font: 13px Nunito;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #333;
  margin-bottom: 20px;
  padding-left: 16px;
  position: relative;
}
.outcome__head:before, .outcome h2:before, .outcome h3:before, .outcome h4:before, .outcome h5:before {
  content: "";
  display: block;
  position: absolute;
  background: #56c1f1;
  width: 4px;
  height: 100%;
  left: 0;
}
.outcome__text {
  font: 13px Nunito;
  line-height: 20px;
  font-style: normal;
  font-weight: 400;
  color: #333;
}

@media (min-width: 1200px) {
	.col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
  .justify-content-xl-between {
	  justify-content: space-between!important;
  }
  .company {
	  text-align: left;
  }
  .footer-menu {
	  margin: 0;
  }
  .footer-menu__item {
	  margin-bottom: 8px;
  }
  .footer-menu__link:hover {
	  color: #fff;
	  transition: color .3s ease-in;
  }
  .footer-info {
	  max-width: 416px;
	  padding: 0;
  }
  .connection {
	  display: flex;
	  justify-content: space-between;
  }
  .connection__item {
	  margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .outcome {
    padding: 30px 0 20px;
  }
  .outcome__item {
    margin: 0;
  }
  .outcome__head {
    width: 100%;
  }
}

.contacts {
  background: #f3f5f9;
  margin-top: 86px;
}
.contacts__wrap {
  max-width: 896px;
  background: radial-gradient(
    226.05% 347% at 12.12% -99.49%,
    #00fbe8 0,
    rgba(85, 146, 227, 0.765625) 100%
  );
  padding: 50px 100px;
  margin: 0 auto;
  position: relative;
}
.contacts__wrap .home-title-28 {
  color: #fff;
  margin-bottom: 35px;
}
.contacts__wrap_flex-item {
  display: flex;
  margin-bottom: 25px;
}
.contacts__wrap_flex-item .icon {
  width: 44px;
  height: 44px;
  margin-right: 15px;
}
.contacts__wrap_flex-item .text p {
  font-family: Nunito;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
.contacts__wrap_flex-item .text p:last-child {
  font-weight: 700;
}
.contacts__wrap_flex-item .text p a {
  color: #fff;
}
.contacts__wrap_flex-item:last-child {
  margin-bottom: 0;
}
.contacts .girl {
  width: 322px;
  height: 420px;
  position: absolute;
  right: 50px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .contacts {
    margin-top: 0;
  }
  .contacts .girl {
    display: none;
  }
  .contacts__wrap {
    padding: 20px 15px;
  }
  .contacts__wrap_flex {
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
  }
}

.card-header.panel-enabled {
  cursor: pointer;
}

.calculate {
  position: relative;
  background: #fff;
  box-shadow: 0 5px 19px rgba(66, 90, 102, 0.114893);
  border-radius: 0 0 10px 10px;
  padding: 22px 16px;
}
.calculate__title {
  font: 22px Nunito;
  font-weight: 800;
  line-height: 27px;
  margin-top: 10px;
  margin-bottom: 26px;
  text-align: center;
}
.calculate__row {
  flex-grow: 1;
  position: relative;
  margin-bottom: 20px;
}
.calculate__line {
  color: #263238;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calculate__label {
  font: 16px Nunito;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 20px;
}
.calculate__scale {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font: 14px Nunito;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #263238;
  opacity: 0.54;
}
.calculate-output {
  font: 18px Nunito;
  font-weight: 800;
  position: relative;
}
.calculate-output_icon {
  padding-right: 16px;
  cursor: pointer;
  position: relative;
}
.calculate-output_icon:before {
  font-size: 14px;
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  content: "₴";
  right: 0;
}
.calculate-output_day {
  font: 14px Nunito;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-left: 6px;
  color: #263238;
}
@media screen and (min-width: 768px) {
  .calculate {
    padding: 30px;
  }
}
@media screen and (min-width: 992px) {
  .calculate {
    padding: 40px 200px 40px 200px;
  }
}
.preview__row {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.preview__row:last-child {
  margin-bottom: 0;
}

.hamburger {
  background: transparent;
  border: 0;
  padding: 0;
}

.stage__wrap {
  align-items: baseline;
}

.lead-section {
  background: #f1f6ff;
  padding: 48px 0 40px;
}

.lead-form-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(38, 50, 56, 0.1);
}

.lead-form-card__title {
  margin: 0 0 10px;
  color: #263238;
  font: 800 28px/1.2 Nunito, sans-serif;
  text-align: center;
}

.lead-form-card__text {
  margin: 0 0 24px;
  color: #52636b;
  font: 400 16px/1.5 Nunito, sans-serif;
  text-align: center;
}

.lead-form-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  font: 600 14px/1.4 Nunito, sans-serif;
}

.lead-form-message_error {
  color: #8a1f11;
  background: #fff1ee;
  border: 1px solid #ffc9bd;
}

.lead-form__field {
  margin-bottom: 16px;
}

.lead-form__label {
  display: block;
  margin-bottom: 8px;
  color: #263238;
  font: 700 15px/1.3 Nunito, sans-serif;
}

.lead-form__input {
  display: block;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  color: #263238;
  background: #fff;
  border: 1px solid #73cbe1;
  border-radius: 6px;
  font: 700 18px/54px Nunito, sans-serif;
}

.lead-form__input::placeholder {
  color: #8bb9c5;
}

.lead-form__input:focus {
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.18);
}

.lead-form__submit {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #ff8a00;
  font: 800 16px/54px Nunito, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.lead-form__submit:hover,
.lead-form__submit:focus {
  color: #fff;
  background: #73cbe1;
}

.lead-form__notice {
  margin: 14px 0 0;
  color: #6c7a80;
  font: 400 13px/1.45 Nunito, sans-serif;
  text-align: center;
}

.lead-form__notice a {
  display: inline;
}

@media screen and (max-width: 560px) {
  .lead-section {
    padding: 28px 0 24px;
  }

  .lead-form-card {
    padding: 24px 16px;
  }

  .lead-form-card__title {
    font-size: 24px;
  }
}

/* SmartZaim redesign */
:root {
  --sz-blue: #2f6fe9;
  --sz-blue-dark: #163b8f;
  --sz-orange: #ff9924;
  --sz-orange-dark: #ee7b14;
  --sz-ink: #17233f;
  --sz-muted: #66718a;
  --sz-line: #e8edf7;
  --sz-surface: #ffffff;
  --sz-soft: #f5f7fc;
}

body {
  background: var(--sz-soft);
  color: var(--sz-ink);
  font-family: Nunito, Arial, sans-serif;
}

.sz-container,
.header-body,
.footer .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(47, 111, 233, 0.12);
  backdrop-filter: blur(14px);
}

.header-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.header__logo,
.company__link {
  display: inline-flex;
  align-items: center;
}

.header__logo img {
  width: 132px;
  height: auto;
  display: block;
}

.header-block {
  width: 100%;
}

.header-block_desktop {
  align-items: center;
  justify-content: space-between;
}

.header-nav__inner .menu,
.mobile-nav .menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.menu__link,
.header-nav .menu a,
.mobile-nav .menu a {
  color: var(--sz-ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.menu__link:hover,
.menu__link:focus,
.header-nav .menu a:hover,
.header-nav .menu a:focus,
.mobile-nav .menu a:hover,
.mobile-nav .menu a:focus {
  color: var(--sz-blue);
  background: rgba(47, 111, 233, 0.08);
}

.hamburger {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eef4ff;
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  background: var(--sz-blue);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 49;
  display: none;
  padding: 18px 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--sz-line);
  box-shadow: 0 18px 40px rgba(23, 35, 63, 0.12);
}

.mobile-nav_active {
  display: block;
}

.mobile-nav .menu {
  flex-direction: column;
  align-items: stretch;
}

.mobile-nav .menu__link,
.mobile-nav .menu a {
  width: 100%;
}

.sz-page {
  overflow: hidden;
}

.sz-eyebrow {
  margin: 0 0 10px;
  color: var(--sz-orange-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sz-hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 72px 0 54px;
  background: #f7f9ff url("assets/images/hero-bg.png") center / cover no-repeat;
}

.sz-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
}

.sz-hero__content {
  max-width: 580px;
}

.sz-hero h1,
.sz-showcase-hero h1 {
  margin: 0 0 18px;
  color: var(--sz-blue-dark);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
}

.sz-hero__text,
.sz-showcase-hero p {
  max-width: 540px;
  margin: 0 0 22px;
  color: #32405f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.sz-hero__benefits {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
}

.sz-hero__benefits li {
  position: relative;
  padding-left: 30px;
  color: var(--sz-ink);
  font-size: 16px;
  font-weight: 800;
}

.sz-hero__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sz-orange);
  box-shadow: inset 0 0 0 6px #fff;
}

.sz-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.sz-button_primary,
.btn {
  color: #fff;
  background: var(--sz-orange);
  box-shadow: 0 12px 26px rgba(255, 153, 36, 0.28);
}

.sz-button_primary:hover,
.sz-button_primary:focus,
.btn:hover,
.btn:focus {
  color: #fff;
  background: var(--sz-orange-dark);
}

.sz-button_secondary {
  color: #fff;
  background: var(--sz-blue);
  box-shadow: 0 12px 26px rgba(47, 111, 233, 0.22);
}

.sz-button_secondary:hover,
.sz-button_secondary:focus {
  color: #fff;
  background: var(--sz-blue-dark);
}

.sz-calculator {
  width: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(47, 111, 233, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(31, 63, 135, 0.16);
}

.sz-calculator__header {
  margin-bottom: 18px;
}

.sz-calculator__label {
  margin: 0 0 6px;
  color: var(--sz-muted);
  font-size: 14px;
  font-weight: 800;
}

.sz-calculator__amount {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 16px;
  background: #f7f9ff;
  border: 1px solid var(--sz-line);
  border-radius: 8px;
}

.sz-calculator__amount input {
  width: 100%;
  min-width: 0;
  color: var(--sz-blue-dark);
  background: transparent;
  border: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.sz-calculator__amount span {
  color: var(--sz-blue-dark);
  font-size: 28px;
  font-weight: 900;
}

.sz-range {
  margin-bottom: 18px;
}

.sz-range input[type="range"] {
  width: 100%;
}

.sz-range__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--sz-muted);
  font-size: 13px;
  font-weight: 800;
}

.sz-calculator__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.sz-calculator__meta div {
  padding: 14px;
  background: #fff8ef;
  border: 1px solid #ffe3bd;
  border-radius: 8px;
}

.sz-calculator__meta span {
  display: block;
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 800;
}

.sz-calculator__meta strong {
  display: block;
  margin-top: 3px;
  color: var(--sz-ink);
  font-size: 18px;
  font-weight: 900;
}

.sz-calculator .sz-button {
  width: 100%;
}

.sz-calculator__footnote {
  margin: 14px 0 0;
  color: var(--sz-muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.manual,
.return,
.outcome,
.sz-offers {
  background: var(--sz-soft);
  padding: 62px 0;
}

.manual h2,
.return h2,
.home-title-28,
.sz-section-head h2 {
  margin: 0 0 28px;
  color: var(--sz-blue-dark);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.16;
}

.manual-list,
.return-list {
  row-gap: 18px;
}

.manual__item,
.return-list__item {
  margin-bottom: 18px;
}

.manual__item,
.return-list__inner,
.outcome__item {
  height: 100%;
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 35, 63, 0.08);
}

.manual__item {
  padding: 24px;
  text-align: center;
}

.manual__img img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.manual-description__title,
.return-header__subtitle,
.outcome__head {
  color: var(--sz-ink);
  font-weight: 900;
}

.manual-description__text,
.return__info,
.outcome p,
.outcome li,
.sz-section-head p {
  color: var(--sz-muted);
  font-size: 15px;
  line-height: 1.6;
}

.return-list__inner,
.outcome__item {
  padding: 24px;
}

.return-icon {
  background: #eef4ff;
  border-radius: 8px;
}

.outcome__item {
  margin-bottom: 16px;
}

.lead-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #f7f9ff url("assets/images/hero-bg.png") center / cover no-repeat;
}

.lead-form-card {
  border: 1px solid rgba(47, 111, 233, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(31, 63, 135, 0.16);
}

.lead-form-card__title {
  color: var(--sz-blue-dark);
}

.lead-form-card__text {
  color: var(--sz-muted);
}

.lead-form__input {
  height: 56px;
  border-color: var(--sz-line);
  border-radius: 8px;
  color: var(--sz-blue-dark);
  background: #f7f9ff;
}

.lead-form__input:focus {
  border-color: var(--sz-blue);
  box-shadow: 0 0 0 4px rgba(47, 111, 233, 0.13);
}

.lead-form__submit {
  min-height: 56px;
  border-radius: 14px;
  background: var(--sz-orange);
}

.lead-form__submit:hover,
.lead-form__submit:focus {
  background: var(--sz-orange-dark);
}

.sz-showcase-hero {
  padding: 72px 0 46px;
  background: #f7f9ff url("assets/images/hero-bg.png") center / cover no-repeat;
}

.sz-showcase-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 32px;
  align-items: center;
}

.sz-showcase-hero__summary {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 35, 63, 0.12);
  text-align: center;
}

.sz-showcase-hero__summary span,
.sz-showcase-hero__summary small {
  display: block;
  color: var(--sz-muted);
  font-size: 14px;
  font-weight: 800;
}

.sz-showcase-hero__summary strong {
  display: block;
  color: var(--sz-orange);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.sz-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.sz-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sz-offer-card {
  display: grid;
  grid-template-rows: 94px 1fr auto;
  min-height: 360px;
  background: #fff;
  border: 1px solid var(--sz-line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 35, 63, 0.08);
  overflow: hidden;
}

.sz-offer-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f7f9ff;
  border-bottom: 1px solid var(--sz-line);
}

.sz-offer-card__logo img {
  max-width: 180px;
  max-height: 66px;
  object-fit: contain;
}

.sz-offer-card__body {
  padding: 18px;
}

.sz-offer-card h3 {
  margin: 0 0 14px;
  color: var(--sz-ink);
  font-size: 20px;
  font-weight: 900;
}

.sz-offer-card__terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.sz-offer-card__terms span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--sz-blue-dark);
  background: #eef4ff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.sz-offer-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.sz-offer-card li {
  position: relative;
  padding-left: 22px;
  color: var(--sz-muted);
  font-size: 14px;
  font-weight: 800;
}

.sz-offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sz-orange);
}

.sz-offer-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: #fff;
  background: var(--sz-orange);
  font-size: 16px;
  font-weight: 900;
}

.sz-offer-card__button:hover,
.sz-offer-card__button:focus {
  color: #fff;
  background: var(--sz-orange-dark);
}

.sz-offers__note {
  margin: 18px 0 0;
  color: var(--sz-muted);
  font-size: 13px;
  font-weight: 700;
}

.footer {
  background: var(--sz-blue-dark);
}

.footer-top {
  padding: 42px 0 28px;
  background: transparent;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.12);
}

.company__link img {
  width: 140px;
  height: auto;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
}

.company__label,
.footer-menu__link,
.connection__label,
.connection__link,
.footer-bottom__label {
  color: #fff;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-button .btn {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .header-block_desktop {
    display: none;
  }

  .header-block_mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sz-hero {
    min-height: 0;
    padding: 44px 0 34px;
    background-position: center top;
  }

  .sz-hero__grid,
  .sz-showcase-hero__grid {
    grid-template-columns: 1fr;
  }

  .sz-hero h1,
  .sz-showcase-hero h1 {
    font-size: 38px;
  }

  .sz-calculator {
    max-width: 520px;
  }

  .sz-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 992px) {
  .header-block_mobile {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .sz-container,
  .header-body,
  .footer .container {
    width: min(calc(100% - 24px), 1180px);
  }

  .header-body {
    min-height: 66px;
  }

  .mobile-nav {
    inset: 66px 0 auto 0;
  }

  .header__logo img {
    width: 118px;
  }

  .sz-hero {
    padding: 34px 0 28px;
  }

  .sz-hero__content {
    max-width: none;
  }

  .sz-hero h1,
  .sz-showcase-hero h1 {
    font-size: 32px;
  }

  .sz-hero__text,
  .sz-showcase-hero p {
    font-size: 16px;
  }

  .sz-calculator,
  .lead-form-card,
  .sz-showcase-hero__summary {
    padding: 20px;
  }

  .sz-calculator__meta,
  .sz-offer-card__terms {
    grid-template-columns: 1fr;
  }

  .manual,
  .return,
  .outcome,
  .sz-offers {
    padding: 42px 0;
  }

  .manual h2,
  .return h2,
  .home-title-28,
  .sz-section-head h2 {
    font-size: 26px;
  }

  .sz-offer-grid {
    grid-template-columns: 1fr;
  }

  .sz-offer-card {
    min-height: 0;
  }
}
.preview__label {
  font: 14px Nunito;
  font-style: normal;
  font-weight: 800;
  line-height: 1.3em;
  letter-spacing: 0;
  color: #333;
}
.preview__output {
  font: 14px Nunito;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #666;
}
.preview__output_icon {
  padding-right: 16px;
  cursor: pointer;
  position: relative;
}
.preview__output_icon:before {
  font-size: 14px;
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
  content: "₴";
  right: 0;
}

/* SmartZaim conversion polish */
:root {
  --sz-blue: #3f72e6;
  --sz-blue-dark: #3150a2;
  --sz-orange: #ff8f24;
  --sz-orange-dark: #f17813;
  --sz-ink: #484848;
  --sz-muted: #777;
  --sz-border: #898989;
  --sz-soft-border: #ff8f24;
  --sz-cream: #fff7ee;
}

body {
  background: var(--sz-cream);
  color: var(--sz-ink);
  font-family: Nunito, Arial, sans-serif;
}

.sz-page {
  background: var(--sz-cream);
  overflow: hidden;
}

.sz-container {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0 10px;
  background: linear-gradient(90deg, #ece6ff 0%, #fff2e6 100%);
  border-bottom: 0;
  backdrop-filter: none;
}

.header-body {
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(75, 55, 130, 0.08);
}

.header__logo img {
  width: 160px;
}

.header__logo {
  margin-right: 0;
}

.sz-page,
.sz-page button,
.sz-page input,
.sz-page a {
  font-family: Nunito, Arial, sans-serif;
}

.hamburger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  height: 3px;
  background: #171717;
  border-radius: 3px;
}

.hamburger__line::before {
  top: -9px;
}

.hamburger__line::after {
  top: 9px;
}

.header:not(.header_register) .header-block_mobile {
  width: 100%;
  gap: 16px;
}

.header:not(.header_register) .hamburger {
  flex: 0 0 44px;
  margin-left: auto;
}

.menu__link,
.header-nav .menu a,
.mobile-nav .menu a {
  color: var(--sz-ink);
  font-size: 15px;
  font-weight: 900;
}

.mobile-nav {
  inset: 104px 24px auto 24px;
  padding: 14px;
  border: 1px solid rgba(255, 143, 36, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(72, 72, 72, 0.12);
}

.header_register .header-body {
  width: min(430px, calc(100% - 48px));
}

.header_register .header-block_mobile {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header_register .header-block_desktop {
  display: none;
}

.header_register .header__logo img {
  width: 176px;
}

.sz-home-intro {
  padding: 10px 0 26px;
  background: #fff1ee url("assets/images/hero-bg.png") center top / cover no-repeat;
}

.sz-home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 18px;
  align-items: start;
}

.sz-hero-visual__media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: url("assets/images/hero-bg.png") center / cover no-repeat;
  border: 2px solid rgba(255, 143, 36, 0.35);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(255, 143, 36, 0.12);
}

.sz-hero-visual__tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  min-height: 48px;
  padding: 8px 16px;
  color: #fff;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  box-shadow: 0 10px 22px rgba(37, 60, 130, 0.12);
  transform: rotate(-3deg);
}

.sz-hero-visual__tag_blue {
  top: 68px;
  left: 42px;
  background: var(--sz-blue);
}

.sz-hero-visual__tag_orange {
  top: 138px;
  left: 95px;
  background: var(--sz-orange);
  transform: rotate(1deg);
}

.sz-hero-visual__tag_light {
  top: 210px;
  left: 48px;
  max-width: 230px;
  color: var(--sz-blue-dark);
  background: #dceaff;
}

.sz-calculator {
  width: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(95, 60, 130, 0.09);
}

.sz-calculator__header {
  margin-bottom: 16px;
}

.sz-calculator h2 {
  margin: 0 0 12px;
  color: #686868;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.sz-calculator__amount-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sz-calculator__step {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: var(--sz-blue-dark);
  background: #fff;
  border: 3px solid var(--sz-blue-dark);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.sz-calculator__amount {
  min-height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.sz-calculator__amount input {
  width: 142px;
  color: var(--sz-blue-dark);
  font-size: 30px;
  text-align: right;
  appearance: textfield;
}

.sz-calculator__amount input::-webkit-outer-spin-button,
.sz-calculator__amount input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.sz-calculator__amount span {
  color: var(--sz-blue-dark);
  font-size: 29px;
}

.sz-range,
.sz-term {
  margin-bottom: 12px;
}

.sz-range input[type="range"],
.sz-term input[type="range"] {
  width: 100%;
  height: 22px;
  background: transparent;
  accent-color: var(--sz-orange);
}

.sz-range__scale {
  margin-top: 0;
  color: #686868;
  font-size: 11px;
  font-weight: 900;
}

.sz-term__label {
  display: inline-block;
  margin-bottom: 2px;
  color: #686868;
  font-size: 13px;
  font-weight: 900;
}

.sz-term__value {
  display: inline-flex;
  min-width: 36px;
  justify-content: center;
  margin-left: 10px;
  color: var(--sz-blue-dark);
  font-size: 15px;
  font-weight: 900;
}

.sz-calculator__summary {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
}

.sz-calculator__summary div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(76px, auto);
  align-items: center;
  gap: 12px;
}

.sz-calculator__summary span {
  color: #686868;
  font-size: 16px;
  font-weight: 900;
}

.sz-calculator__summary strong {
  color: var(--sz-orange);
  font-size: 16px;
  font-weight: 900;
  justify-self: end;
  text-align: right;
}

.sz-button,
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  color: #fff;
  background: var(--sz-orange);
  box-shadow: 0 12px 18px rgba(241, 120, 19, 0.28);
  font-size: 19px;
  font-weight: 900;
}

.sz-button:hover,
.sz-button:focus,
.btn:hover,
.btn:focus {
  color: #fff;
  background: var(--sz-orange-dark);
}

.sz-calculator .sz-button {
  width: min(260px, 100%);
  margin: 0 auto;
  border-radius: 15px;
  text-transform: uppercase;
}

.sz-benefits {
  padding: 24px 0 28px;
  background: #fff;
}

.sz-benefits h2,
.manual h2,
.sz-cities h2 {
  max-width: 700px;
  margin: 0 auto 18px;
  color: #434343;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.sz-benefits h2 span {
  display: block;
}

.sz-benefits__panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--sz-border);
  border-radius: 20px;
}

.sz-benefit {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.sz-benefit__check {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: #21bf3c;
  border-radius: 4px;
}

.sz-benefit__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.sz-benefit h3 {
  margin: 0 0 4px;
  color: #4f4f4f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.sz-benefit p {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.35;
}

.manual {
  padding: 30px 0 34px;
  background: #fff1ee url("assets/images/hero-bg.png") center / cover no-repeat;
}

.manual-list {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
}

.manual__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 86px;
  padding: 13px 16px 13px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--sz-border);
  border-radius: 18px;
  box-shadow: none;
  text-align: left;
}

.manual__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--sz-orange);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.manual-description__title {
  margin: 2px 0 5px;
  color: #4f4f4f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.manual-description__text {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 1.35;
}

.manual .sz-button {
  display: flex;
  width: min(260px, 100%);
  margin: 0 auto;
  text-transform: uppercase;
}

.sz-cities {
  padding: 26px 0 30px;
  background: #fff;
}

.sz-cities h2 {
  margin-bottom: 20px;
}

.sz-cities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.sz-cities__grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 10px;
  color: var(--sz-orange);
  background: #fff;
  border: 3px solid var(--sz-orange);
  border-radius: 15px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.lead-section {
  min-height: calc(100vh - 104px);
  padding: 8px 0 80px;
  background: #fff1ee url("assets/images/hero-bg.png") center top / cover no-repeat;
}

.lead-flow {
  max-width: 430px;
}

.lead-flow h1 {
  margin: 4px 0 12px;
  color: #3f3f3f;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}

.lead-step-card {
  margin-bottom: 10px;
  padding: 13px 12px;
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid var(--sz-orange);
  border-radius: 18px;
}

.lead-step-card__head {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.lead-step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--sz-orange);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.lead-step-card h2 {
  margin: 0;
  color: #5f5f5f;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.lead-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  text-align: center;
}

.lead-summary div + div {
  border-left: 1px solid rgba(255, 143, 36, 0.65);
}

.lead-summary span {
  display: block;
  margin-bottom: 6px;
  color: #666;
  font-size: 12px;
  font-weight: 900;
}

.lead-summary strong {
  display: block;
  color: var(--sz-orange);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.lead-summary__edit {
  display: block;
  width: max-content;
  margin: 12px auto 0;
  color: var(--sz-orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
}

.lead-form {
  margin: 0;
}

.lead-form__field {
  margin: 0 0 18px;
}

.lead-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lead-form__phone {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  align-items: center;
}

.lead-form__country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  color: var(--sz-blue-dark);
  background: linear-gradient(#3f72e6 0 50%, #ffd640 50% 100%);
  border-radius: 6px;
  font-size: 0;
  font-weight: 900;
}

.lead-form__input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  color: #555;
  background: #fff8f0;
  border: 1px solid #8a8178;
  border-radius: 5px;
  font-size: 23px;
  font-weight: 700;
}

.lead-form__input::placeholder {
  color: #6f6f6f;
}

.lead-form__input:focus {
  border-color: var(--sz-orange);
  box-shadow: 0 0 0 3px rgba(255, 143, 36, 0.18);
}

.lead-form__submit {
  width: 100%;
  min-height: 52px;
  border-radius: 15px;
  font-size: 19px;
}

.lead-form__notice {
  margin: 12px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.lead-form-message {
  margin: 0 0 12px;
  border-radius: 12px;
  font-size: 14px;
}

.sz-showcase-page {
  background: #fff7ee;
}

.sz-showcase-hero {
  padding: 0;
  background: #fff;
}

.sz-showcase-hero__image {
  max-width: 920px;
  margin: 0 auto;
}

.sz-showcase-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.sz-offers {
  padding: 26px 0 30px;
  background: #fff7ee;
}

.sz-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sz-offer-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px 24px 26px;
  background: #fff;
  border: 2px solid var(--sz-orange);
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(88, 65, 30, 0.1);
  overflow: visible;
}

.sz-offer-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin-bottom: 14px;
}

.sz-offer-card__head img {
  max-width: 128px;
  max-height: 46px;
  object-fit: contain;
}

.sz-offer-card__head h3 {
  margin: 0;
  color: #222;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
}

.sz-offer-card__content {
  flex: 1 1 auto;
}

.sz-offer-card__terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0 0 12px;
  padding: 0;
}

.sz-offer-card__terms div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px;
  align-items: baseline;
}

.sz-offer-card__terms dt {
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.sz-offer-card__terms dd {
  margin: 0;
  color: var(--sz-blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.sz-offer-rating {
  margin: 0 0 10px;
  padding: 0 0 0 68px;
}

.sz-offer-rating > span:first-child {
  display: block;
  margin-bottom: 3px;
  color: #333;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.sz-offer-rating strong {
  display: block;
  margin-bottom: -13px;
  color: #333;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.sz-offer-rating__track {
  display: block;
  height: 12px;
  overflow: hidden;
  background: #fff8aa;
  border: 1px solid #777;
  border-radius: 999px;
}

.sz-offer-rating__track span {
  display: block;
  width: 96%;
  height: 100%;
  background: #ffec29;
  border-radius: inherit;
}

.sz-offer-card__features {
  display: grid;
  gap: 2px;
  margin: 0 0 8px;
  padding-left: 84px;
}

.sz-offer-card__features li {
  color: #555;
  font-size: 11px;
  line-height: 1.25;
}

.sz-offer-card__features li::before {
  content: none;
}

.sz-offer-card__details {
  margin: 8px 0 0;
  color: #777;
  font-size: 13px;
  text-align: center;
}

.sz-offer-card__details summary {
  cursor: pointer;
  color: #777;
  font-weight: 800;
  text-decoration: underline;
}

.sz-offer-card__details p {
  margin: 8px 0 0;
  line-height: 1.35;
}

.sz-offer-card__button {
  min-height: 46px;
  margin-top: 16px;
  color: #fff;
  background: var(--sz-orange);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.sz-offers__note {
  margin: 14px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.35;
}

.sz-legal-info {
  padding: 26px 0 36px;
  background: #fff7ee;
}

.sz-legal-info__divider {
  height: 2px;
  margin-bottom: 16px;
  background: rgba(255, 143, 36, 0.6);
}

.sz-legal-info h2 {
  margin: 0 0 10px;
  color: #4d4d4d;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.sz-legal-info p,
.sz-legal-info li {
  margin: 0 0 8px;
  color: #555;
  font-size: 12px;
  line-height: 1.45;
  text-align: justify;
}

.sz-legal-info ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.sz-legal-info__details {
  margin-top: 10px;
}

.sz-legal-info__details summary {
  cursor: pointer;
  color: #4d4d4d;
  font-size: 17px;
  font-weight: 900;
}

.footer {
  background: #314f9f;
}

.footer-top {
  padding: 28px 0 18px;
}

.footer .row {
  row-gap: 18px;
}

.company__label {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.35;
}

.footer-menu {
  display: grid;
  gap: 6px;
}

.footer-menu__link,
.connection__link {
  font-size: 14px;
}

@media screen and (min-width: 992px) {
  .header_register .header-block_mobile {
    display: grid;
  }

  .sz-home-intro {
    padding: 36px 0 42px;
  }

  .sz-benefits__panel,
  .manual-list,
  .sz-cities__grid {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
  }

  .manual-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 991px) {
  .sz-home-intro__grid {
    grid-template-columns: 1fr;
  }

  .sz-calculator {
    max-width: 430px;
    margin: 0 auto;
  }

  .sz-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 680px) {
  .sz-container,
  .footer .container {
    width: min(calc(100% - 48px), 430px);
  }

  .header {
    padding: 24px 0 10px;
  }

  .header-body {
    width: min(calc(100% - 60px), 390px);
    min-height: 80px;
    padding: 0 24px;
    border-radius: 18px;
  }

  .header__logo img {
    width: 150px;
  }

  .mobile-nav {
    inset: 114px 30px auto 30px;
  }

  .sz-home-intro {
    padding-top: 0;
  }

  .sz-hero-visual__media {
    min-height: 260px;
    border-radius: 18px;
    background-position: center;
  }

  .sz-hero-visual__tag {
    max-width: 165px;
    min-height: 38px;
    padding: 7px 10px;
    font-size: 17px;
  }

  .sz-hero-visual__tag_blue {
    top: 53px;
    left: 22px;
  }

  .sz-hero-visual__tag_orange {
    top: 103px;
    left: 54px;
  }

  .sz-hero-visual__tag_light {
    top: 161px;
    left: 24px;
    max-width: 150px;
  }

  .sz-calculator {
    padding: 16px 17px 24px;
  }

  .sz-calculator__summary span,
  .sz-calculator__summary strong {
    font-size: 14px;
  }

  .sz-benefits h2,
  .manual h2,
  .sz-cities h2 {
    font-size: 25px;
  }

  .sz-benefits__panel {
    padding: 18px;
  }

  .lead-section {
    min-height: calc(100vh - 114px);
  }

  .lead-flow {
    width: min(calc(100% - 48px), 430px);
  }

  .sz-offer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sz-offer-card {
    padding: 16px 26px 26px;
  }

  .sz-offer-card__terms {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sz-offer-card__head h3 {
    font-size: 27px;
  }
}

@media screen and (max-width: 380px) {
  .sz-container,
  .footer .container,
  .lead-flow {
    width: calc(100vw - 28px);
    max-width: 430px;
  }

  .header-body {
    width: calc(100vw - 28px);
    max-width: 390px;
  }

  .sz-hero-visual__tag {
    font-size: 15px;
  }

  .lead-summary strong {
    font-size: 13px;
  }

  .lead-form__input {
    font-size: 19px;
  }

  .sz-cities__grid {
    grid-template-columns: 1fr;
  }
}

/* SmartZaim professional conversion layer */
:root {
  --sz-blue: #3168df;
  --sz-blue-dark: #183e93;
  --sz-orange: #ff8b24;
  --sz-orange-dark: #ef7612;
  --sz-ink: #1f2937;
  --sz-muted: #667085;
  --sz-border: #e4e8f0;
  --sz-soft: #f6f8fc;
  --sz-soft-warm: #fff8f1;
  --sz-white: #fff;
  --sz-radius: 8px;
  --sz-shadow: 0 16px 40px rgba(31, 41, 55, 0.1);
}

body {
  margin: 0;
  background: var(--sz-soft);
  color: var(--sz-ink);
  font-family: Nunito, Arial, sans-serif;
}

.sz-page,
.sz-page * {
  letter-spacing: 0;
}

.sz-page {
  background: var(--sz-soft);
}

.sz-page,
.sz-page h1,
.sz-page h2,
.sz-page h3,
.sz-page h4,
.sz-page p,
.sz-page li,
.sz-page a,
.sz-page span,
.sz-page button,
.sz-page input,
.sz-page summary,
.sz-page dt,
.sz-page dd,
.header,
.footer {
  font-family: Nunito, Arial, sans-serif;
}

.sz-container,
.header-body,
.footer .container {
  width: min(1120px, calc(100% - 40px));
}

.header {
  padding: 10px 0;
  background: rgba(246, 248, 252, 0.92);
  border-bottom: 1px solid rgba(228, 232, 240, 0.88);
  backdrop-filter: blur(14px);
}

.header-body {
  min-height: 64px;
  padding: 0 18px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.06);
}

.header__logo {
  margin-right: 0;
}

.header__logo img {
  width: 148px;
  max-width: 148px;
}

.hamburger {
  width: 40px;
  height: 40px;
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  background: var(--sz-ink);
}

.header-nav .menu a,
.mobile-nav .menu a {
  color: var(--sz-ink);
  border-radius: var(--sz-radius);
  font-size: 14px;
  font-weight: 800;
}

.header-nav .menu a:hover,
.header-nav .menu a:focus,
.mobile-nav .menu a:hover,
.mobile-nav .menu a:focus {
  color: var(--sz-blue-dark);
  background: #eef4ff;
}

.mobile-nav {
  inset: 84px 20px auto 20px;
  padding: 10px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: var(--sz-shadow);
}

.header_register {
  background: linear-gradient(180deg, #f4f7ff 0%, #fff8f1 100%);
  border-bottom: 0;
}

.header_register .header-body {
  width: min(420px, calc(100% - 40px));
  box-shadow: none;
}

.header_register .header__logo img {
  width: 158px;
  max-width: 158px;
}

.sz-home-intro {
  padding: 34px 0 42px;
  background:
    linear-gradient(90deg, rgba(246, 248, 252, 0.98) 0%, rgba(246, 248, 252, 0.88) 48%, rgba(255, 248, 241, 0.72) 100%),
    url("assets/images/hero-bg.png") right center / min(58vw, 820px) auto no-repeat;
}

.sz-home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
  gap: 34px;
  align-items: center;
}

.sz-home-intro__content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.sz-home-copy {
  max-width: 590px;
}

.sz-eyebrow {
  margin: 0 0 8px;
  color: var(--sz-orange-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.sz-home-copy h1 {
  margin: 0 0 12px;
  color: var(--sz-ink);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.03;
  max-width: 100%;
  overflow-wrap: break-word;
  white-space: normal;
}

.sz-home-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--sz-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: break-word;
  white-space: normal;
}

.sz-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}

.sz-trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--sz-blue-dark);
  background: #eef4ff;
  border: 1px solid #d8e4ff;
  border-radius: var(--sz-radius);
  font-size: 13px;
  font-weight: 900;
}

.sz-hero-visual__media {
  width: min(100%, 560px);
  aspect-ratio: 16 / 7.5;
  min-height: 0;
  background: url("assets/images/hero-bg.png") center / cover no-repeat;
  border: 1px solid rgba(255, 139, 36, 0.28);
  border-radius: var(--sz-radius);
  box-shadow: 0 12px 30px rgba(49, 104, 223, 0.1);
}

.sz-hero-visual__tag {
  max-width: none;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--sz-radius);
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(24, 62, 147, 0.12);
  transform: none;
}

.sz-hero-visual__tag_blue {
  top: 16px;
  left: 16px;
  background: var(--sz-blue);
}

.sz-calculator {
  padding: 22px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: var(--sz-shadow);
}

.sz-calculator h2 {
  margin: 0 0 14px;
  color: var(--sz-ink);
  font-size: 18px;
  font-weight: 900;
}

.sz-calculator__amount-row {
  gap: 12px;
}

.sz-calculator__step {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--sz-blue-dark);
  background: var(--sz-white);
  border: 2px solid #cbd8f6;
  border-radius: 50%;
  font-size: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.sz-calculator__step:hover,
.sz-calculator__step:focus {
  border-color: var(--sz-blue);
  transform: translateY(-1px);
}

.sz-calculator__amount input {
  width: 144px;
  color: var(--sz-blue-dark);
  font-size: 31px;
  font-weight: 900;
}

.sz-calculator__amount span {
  color: var(--sz-blue-dark);
  font-size: 27px;
}

.sz-range,
.sz-term {
  margin-bottom: 14px;
}

.sz-range input[type="range"],
.sz-term input[type="range"] {
  height: 26px;
  accent-color: var(--sz-orange);
}

.sz-range__scale {
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 800;
}

.sz-term__label,
.sz-term__value {
  color: var(--sz-ink);
  font-size: 14px;
  font-weight: 900;
}

.sz-term__value {
  color: var(--sz-blue-dark);
}

.sz-calculator__summary {
  gap: 7px;
  margin: 16px 0 18px;
  padding: 12px;
  background: var(--sz-soft);
  border-radius: var(--sz-radius);
}

.sz-calculator__summary div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.sz-calculator__summary span,
.sz-calculator__summary strong {
  font-size: 14px;
  line-height: 1.25;
}

.sz-calculator__summary span {
  color: var(--sz-muted);
}

.sz-calculator__summary strong {
  color: var(--sz-orange-dark);
}

.sz-button,
.btn,
.sz-offer-card__button {
  min-height: 50px;
  border-radius: var(--sz-radius);
  color: #fff;
  background: var(--sz-orange);
  box-shadow: 0 12px 24px rgba(255, 139, 36, 0.28);
  font-size: 17px;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sz-button:hover,
.sz-button:focus,
.btn:hover,
.btn:focus,
.sz-offer-card__button:hover,
.sz-offer-card__button:focus {
  color: #fff;
  background: var(--sz-orange-dark);
  box-shadow: 0 14px 28px rgba(239, 118, 18, 0.32);
  transform: translateY(-1px);
}

.sz-calculator .sz-button {
  width: 100%;
  margin: 0;
  text-transform: none;
}

.sz-benefits,
.sz-cities {
  padding: 38px 0;
  background: var(--sz-white);
}

.manual {
  padding: 42px 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.94), rgba(246, 248, 252, 0.96)),
    url("assets/images/hero-bg.png") center / cover no-repeat;
}

.sz-benefits h2,
.manual h2,
.sz-cities h2 {
  max-width: 640px;
  margin: 0 auto 20px;
  color: var(--sz-ink);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}

.sz-benefits h2 span {
  display: inline;
}

.sz-benefits__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  max-width: 840px;
  padding: 22px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.06);
}

.sz-benefit {
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.sz-benefit__check {
  width: 18px;
  height: 18px;
  background: #22c55e;
  border-radius: 5px;
}

.sz-benefit h3 {
  margin: 0 0 3px;
  color: var(--sz-ink);
  font-size: 16px;
  line-height: 1.25;
}

.sz-benefit p,
.manual-description__text {
  color: var(--sz-muted);
  font-size: 14px;
  line-height: 1.45;
}

.manual-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
}

.manual__item {
  display: block;
  min-height: 0;
  padding: 18px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.06);
}

.manual__number {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  background: var(--sz-orange);
  border-radius: var(--sz-radius);
  font-size: 18px;
}

.manual-description__title {
  margin: 0 0 6px;
  color: var(--sz-ink);
  font-size: 17px;
  line-height: 1.22;
}

.manual .sz-button {
  width: min(280px, 100%);
  text-transform: none;
}

.sz-cities__grid {
  max-width: 760px;
  gap: 8px;
}

.sz-cities__grid span {
  min-height: 42px;
  color: var(--sz-blue-dark);
  background: #f7faff;
  border: 1px solid #d8e4ff;
  border-radius: var(--sz-radius);
  font-size: 15px;
}

.lead-section {
  min-height: calc(100vh - 85px);
  padding: 24px 0 56px;
  background:
    linear-gradient(180deg, rgba(246, 248, 252, 0.94), rgba(255, 248, 241, 0.9)),
    url("assets/images/hero-bg.png") center top / cover no-repeat;
}

.lead-flow {
  max-width: 430px;
}

.lead-flow h1 {
  margin: 0 0 14px;
  color: var(--sz-ink);
  font-size: 28px;
  font-weight: 900;
}

.lead-step-card {
  margin-bottom: 12px;
  padding: 16px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
}

.lead-step-card_summary {
  box-shadow: none;
}

.lead-step-card__head {
  grid-template-columns: 32px 1fr;
  margin-bottom: 12px;
}

.lead-step-card__number {
  width: 32px;
  height: 32px;
  background: var(--sz-blue);
  border-radius: var(--sz-radius);
  font-size: 17px;
}

.lead-step-card h2 {
  color: var(--sz-ink);
  font-size: 15px;
}

.lead-summary {
  gap: 0;
  padding: 10px;
  background: var(--sz-soft);
  border-radius: var(--sz-radius);
}

.lead-summary div {
  min-width: 0;
}

.lead-summary div + div {
  border-left: 1px solid var(--sz-border);
}

.lead-summary span {
  color: var(--sz-muted);
  font-size: 10px;
  line-height: 1.15;
  white-space: normal;
}

.lead-summary strong {
  color: var(--sz-orange-dark);
  font-size: 15px;
}

.lead-summary__edit {
  color: var(--sz-blue-dark);
}

.lead-form__phone {
  grid-template-columns: 36px 1fr;
}

.lead-form__country {
  height: 40px;
  border-radius: var(--sz-radius);
}

.lead-form__input {
  height: 48px;
  background: var(--sz-white);
  border: 1px solid #cfd6e4;
  border-radius: var(--sz-radius);
  color: var(--sz-ink);
  font-size: 20px;
}

.lead-form__input:focus {
  border-color: var(--sz-blue);
  box-shadow: 0 0 0 4px rgba(49, 104, 223, 0.14);
}

.lead-form__submit {
  min-height: 52px;
  border-radius: var(--sz-radius);
  font-size: 17px;
}

.lead-form__notice {
  color: var(--sz-muted);
  font-size: 11px;
}

.sz-showcase-page {
  background: var(--sz-soft-warm);
}

.sz-showcase-hero {
  background: var(--sz-white);
}

.sz-showcase-hero__image {
  max-width: 980px;
  max-height: 320px;
  overflow: hidden;
}

.sz-showcase-hero__image img {
  margin-top: -2%;
}

.sz-offers {
  padding: 30px 0 36px;
  background: var(--sz-soft-warm);
}

.sz-offers__head {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.sz-offers__head h2 {
  margin: 0 0 8px;
  color: var(--sz-ink);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.sz-offers__head p {
  margin: 0;
  color: var(--sz-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.sz-offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sz-offer-card {
  position: relative;
  padding: 18px;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.sz-offer-card:first-child {
  border-color: rgba(255, 139, 36, 0.52);
  box-shadow: 0 18px 42px rgba(255, 139, 36, 0.16);
}

.sz-offer-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  color: var(--sz-orange-dark);
  background: #fff3e8;
  border: 1px solid #ffd9ba;
  border-radius: var(--sz-radius);
  font-size: 11px;
  font-weight: 900;
}

.sz-offer-card__head {
  justify-content: flex-start;
  min-height: 48px;
  margin: 0 0 14px;
  padding-right: 96px;
}

.sz-offer-card__head img {
  max-width: 110px;
  max-height: 40px;
}

.sz-offer-card__head h3 {
  color: var(--sz-ink);
  font-size: 20px;
  font-weight: 900;
}

.sz-offer-card__terms {
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 12px;
  background: var(--sz-soft);
  border-radius: var(--sz-radius);
}

.sz-offer-card__terms div {
  grid-template-columns: 70px 1fr;
}

.sz-offer-card__terms dt,
.sz-offer-card__terms dd {
  font-size: 13px;
}

.sz-offer-card__terms dt {
  color: var(--sz-muted);
}

.sz-offer-card__terms dd {
  color: var(--sz-blue-dark);
}

.sz-offer-rating {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 10px;
  align-items: center;
  margin: 12px 0;
  padding: 0;
}

.sz-offer-rating > span:first-child {
  margin: 0;
  color: var(--sz-muted);
  font-size: 12px;
  text-align: left;
}

.sz-offer-rating strong {
  margin: 0;
  color: var(--sz-ink);
  font-size: 12px;
  text-align: right;
}

.sz-offer-rating__track {
  grid-column: 1 / -1;
  height: 8px;
  background: #edf2ff;
  border: 0;
}

.sz-offer-rating__track span {
  background: linear-gradient(90deg, var(--sz-blue), var(--sz-orange));
}

.sz-offer-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
  padding: 0;
}

.sz-offer-card__features li {
  padding: 5px 8px;
  color: var(--sz-blue-dark);
  background: #eef4ff;
  border-radius: var(--sz-radius);
  font-size: 11px;
  font-weight: 800;
}

.sz-offer-card__details {
  margin-top: 6px;
  color: var(--sz-muted);
  text-align: left;
}

.sz-offer-card__button {
  min-height: 48px;
  margin-top: 14px;
  font-size: 16px;
  text-transform: none;
}

.sz-legal-info {
  padding: 28px 0 42px;
  background: var(--sz-soft-warm);
}

.sz-legal-info .sz-container {
  max-width: 860px;
}

.sz-legal-info__divider {
  background: var(--sz-border);
}

.sz-legal-info h2 {
  color: var(--sz-ink);
}

.sz-legal-info p,
.sz-legal-info li {
  color: var(--sz-muted);
}

.sz-legal-info__details summary {
  color: var(--sz-ink);
  font-size: 16px;
}

.footer {
  background: #152b63;
}

.footer-top {
  padding: 28px 0 20px;
}

.footer-button .btn {
  width: min(260px, 100%);
}

@media screen and (max-width: 991px) {
  .sz-home-intro {
    padding: 24px 0 34px;
    background:
      linear-gradient(180deg, rgba(246, 248, 252, 0.97), rgba(255, 248, 241, 0.9)),
      url("assets/images/hero-bg.png") center top / 900px auto no-repeat;
  }

  .sz-home-intro__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sz-home-copy {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .sz-home-copy p {
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
  }

  .sz-trust-list {
    justify-content: center;
  }

  .sz-hero-visual__media {
    display: none;
  }

  .sz-calculator {
    max-width: 430px;
  }

  .manual-list,
  .sz-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 680px) {
  .sz-container,
  .header-body,
  .footer .container {
    width: calc(100vw - 48px) !important;
    max-width: 430px !important;
  }

  .header {
    padding: 8px 0;
  }

  .header-body {
    min-height: 58px;
    padding: 0 14px;
  }

  .header__logo img {
    width: 132px;
    max-width: 132px;
  }

  .mobile-nav {
    inset: 74px 16px auto 16px;
  }

  .header_register .header-body {
    width: calc(100vw - 48px);
    max-width: 420px;
  }

  .header_register .header__logo img {
    width: 148px;
    max-width: 148px;
  }

  .sz-home-intro {
    padding-top: 18px;
  }

  .sz-home-copy h1 {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
    font-size: 27px;
    line-height: 1.12;
  }

  .sz-home-copy p {
    max-width: 320px;
    font-size: 15px;
  }

  .sz-trust-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .sz-trust-list li {
    justify-content: center;
    min-height: 30px;
    padding: 0 9px;
    font-size: 11px;
    text-align: center;
  }

  .sz-calculator {
    width: calc(100vw - 64px) !important;
    max-width: 410px !important;
    overflow: hidden;
    padding: 18px;
  }

  .sz-calculator__amount input {
    width: 128px;
    font-size: 29px;
  }

  .sz-calculator__summary {
    padding: 10px;
  }

  .sz-calculator__summary div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .sz-calculator__summary strong {
    justify-self: start;
    text-align: left;
  }

  .sz-benefits,
  .manual,
  .sz-cities {
    padding: 30px 0;
  }

  .sz-benefits h2,
  .manual h2,
  .sz-cities h2 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .sz-benefits h2 span {
    display: block;
  }

  .sz-benefits__panel,
  .manual-list,
  .sz-cities__grid,
  .sz-offer-grid {
    grid-template-columns: 1fr;
  }

  .sz-benefits__panel {
    padding: 16px;
    gap: 12px;
  }

  .manual__item {
    padding: 16px;
  }

  .lead-section {
    min-height: calc(100vh - 74px);
    padding: 16px 0 42px;
  }

  .lead-flow {
    width: calc(100vw - 48px);
    max-width: 430px;
  }

  .lead-flow h1 {
    font-size: 26px;
  }

  .lead-step-card {
    padding: 14px;
  }

  .lead-summary strong {
    font-size: 13px;
  }

  .lead-form__input {
    font-size: 18px;
  }

  .sz-showcase-hero__image {
    max-height: none;
    overflow: visible;
  }

  .sz-showcase-hero__image img {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  .sz-offers {
    padding-top: 24px;
  }

  .sz-offers__head {
    margin-bottom: 18px;
  }

  .sz-offers__head p {
    font-size: 14px;
  }

  .sz-offer-grid {
    gap: 12px;
  }

  .sz-offer-card {
    padding: 16px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .sz-offer-card__badge {
    position: static;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .sz-offer-card__head {
    padding-right: 0;
  }

  .sz-offer-card__head h3 {
    font-size: 19px;
  }

  .sz-offer-card__terms {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 380px) {
  .sz-home-copy h1 {
    font-size: 28px;
  }

  .sz-calculator__step {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .sz-calculator__amount input {
    width: 112px;
    font-size: 26px;
  }

  .lead-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lead-summary div + div {
    padding-top: 8px;
    border-top: 1px solid var(--sz-border);
    border-left: 0;
  }
}

.mat-slider {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  padding: 8px;
  outline: 0;
  vertical-align: middle;
}
.mat-slider:not(.mat-slider-disabled):active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.mat-slider-wrapper {
  position: absolute;
}
.mat-slider-track-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.mat-slider-track-fill {
  position: absolute;
  transform-origin: 0 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider-track-background {
  position: absolute;
  transform-origin: 100% 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider-ticks-container {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.mat-slider-ticks {
  background-repeat: repeat;
  background-clip: content-box;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider-thumb-container {
  position: absolute;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider-focus-ring {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider:not(.mat-slider-disabled):not(.mat-slider-sliding)
  .mat-slider-thumb,
.mat-slider:not(.mat-slider-disabled):not(.mat-slider-sliding)
  .mat-slider-thumb-label {
  cursor: -webkit-grab;
  cursor: grab;
}
.mat-slider-thumb {
  position: absolute;
  right: -10px;
  bottom: -10px;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 3px solid transparent;
  border-radius: 50%;
  transform: scale(0.7);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider-thumb-label {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    border-radius 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (-ms-high-contrast: active) {
  .mat-slider-thumb-label {
    outline: solid 1px;
  }
}
.mat-slider-thumb-label-text {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mat-slider-horizontal {
  height: 48px;
  min-width: 128px;
}
.mat-slider-horizontal .mat-slider-wrapper {
  height: 2px;
  top: 23px;
  left: 8px;
  right: 8px;
}
.mat-slider-horizontal .mat-slider-wrapper::after {
  height: 2px;
  border-left-width: 2px;
  right: 0;
  top: 0;
}
.mat-slider-horizontal .mat-slider-track-wrapper {
  height: 2px;
  width: 100%;
}
.mat-slider-horizontal .mat-slider-track-fill {
  height: 2px;
  width: 100%;
  transform: scaleX(0);
}
.mat-slider-horizontal .mat-slider-track-background {
  height: 2px;
  width: 100%;
  transform: scaleX(1);
}
.mat-slider-horizontal .mat-slider-ticks-container {
  height: 2px;
  width: 100%;
}
@media (-ms-high-contrast: active) {
  .mat-slider-horizontal .mat-slider-ticks-container {
    height: 0;
    outline: solid 2px;
    top: 1px;
  }
}
.mat-slider-horizontal .mat-slider-ticks {
  height: 2px;
  width: 100%;
}
.mat-slider-horizontal .mat-slider-thumb-container {
  width: 100%;
  height: 0;
  top: 50%;
}
.mat-slider-horizontal .mat-slider-focus-ring {
  top: -15px;
  right: -15px;
}
.mat-slider-horizontal .mat-slider-thumb-label {
  right: -14px;
  top: -40px;
  transform: translateY(26px) scale(0.01) rotate(45deg);
}
.mat-slider-horizontal .mat-slider-thumb-label-text {
  transform: rotate(-45deg);
}

.timer {
  background: #f5f5f5;
  border-radius: 10px;
  text-align: center;
  font: 16px Nunito;
  line-height: 1.3em;
  font-style: normal;
  font-weight: 400;
  color: #333;
  margin-bottom: 22px;
  padding: 10px 0;
}
.timer__output {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
  color: #ff8a00;
  padding-left: 20px;
}

/* Compact mobile conversion pass */
.header {
  padding: 6px 0;
}

.header-body {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(31, 41, 55, 0.05);
}

.header__logo img {
  width: 128px;
  max-width: 128px;
}

.hamburger {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.hamburger__line {
  width: 22px;
}

.hamburger__line::before {
  top: -7px;
}

.hamburger__line::after {
  top: 7px;
}

.mobile-nav {
  inset: 64px 16px auto 16px;
}

.header_register {
  padding: 6px 0;
}

.header_register .header-body {
  min-height: 50px;
  width: min(390px, calc(100% - 32px)) !important;
}

.header_register .header__logo img {
  width: 132px;
  max-width: 132px;
}

.lead-section {
  display: block;
  align-items: initial;
  min-height: calc(100vh - 62px);
  padding: 12px 0 36px;
  overflow-x: hidden;
}

.lead-flow {
  width: min(390px, calc(100% - 28px));
  max-width: 390px;
  margin: 0 auto;
  box-sizing: border-box;
}

.lead-flow h1 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}

.lead-step-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 8px;
}

.lead-step-card__head {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  margin-bottom: 10px;
}

.lead-step-card__number {
  width: 28px;
  height: 28px;
  font-size: 15px;
}

.lead-step-card h2 {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
  font-size: 14px;
  line-height: 1.25;
}

.lead-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 9px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lead-summary div,
.lead-form,
.lead-form__field,
.lead-form__phone,
.lead-form__input,
.lead-form__submit {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.lead-summary span {
  font-size: 10px;
}

.lead-summary strong {
  font-size: 13px;
  line-height: 1.15;
}

.lead-summary__edit {
  margin-top: 9px;
}

.lead-form__field {
  margin-bottom: 14px;
}

.lead-form__phone {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  width: 100%;
}

.lead-form__country {
  height: 42px;
}

.lead-form__input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 10px;
  font-size: 18px;
}

.lead-form__submit {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0 12px;
  font-size: 16px;
}

.lead-form__notice {
  margin-top: 10px;
  font-size: 10px;
  overflow-wrap: break-word;
}

@media screen and (max-width: 680px) {
  html,
  body,
  #page,
  .site,
  .sz-page {
    max-width: 100%;
    overflow-x: hidden;
  }

  .header {
    padding: 5px 0;
  }

  .header-body {
    width: calc(100% - 24px) !important;
    min-height: 48px;
    padding: 0 12px;
  }

  .header__logo img {
    width: 116px;
    max-width: 116px;
  }

  .hamburger {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .mobile-nav {
    inset: 58px 12px auto 12px;
  }

  .sz-home-intro {
    padding-top: 12px;
  }

  .header_register .header-body {
    min-height: 48px;
    width: calc(100% - 24px) !important;
  }

  .header_register .header__logo img {
    width: 122px;
    max-width: 122px;
  }

  .lead-section {
    min-height: calc(100vh - 58px);
    padding: 10px 0 30px;
  }

  .lead-flow {
    width: calc(100% - 24px) !important;
    max-width: 390px;
  }

  .lead-flow h1 {
    font-size: 23px;
  }

  .lead-step-card {
    padding: 11px;
  }

  .lead-step-card__head {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .lead-summary {
    gap: 0;
    padding: 8px;
  }

  .lead-form__input {
    font-size: 17px;
  }

  .sz-calculator {
    width: calc(100% - 24px) !important;
    max-width: 390px !important;
  }

  .sz-calculator__summary div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .sz-calculator__summary strong {
    justify-self: end;
    text-align: right;
  }
}

@media screen and (max-width: 360px) {
  .lead-flow {
    width: calc(100% - 16px) !important;
  }

  .lead-step-card {
    padding: 10px;
  }

  .lead-step-card__head {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
  }

  .lead-step-card__number {
    width: 26px;
    height: 26px;
  }

  .lead-step-card h2 {
    font-size: 12.5px;
  }

  .lead-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lead-summary span {
    font-size: 9px;
  }

  .lead-summary strong {
    font-size: 11.5px;
  }

  .lead-form__phone {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
  }

  .lead-form__country {
    height: 40px;
  }

  .lead-form__input {
    height: 42px;
    font-size: 16px;
  }

  .lead-form__submit {
    min-height: 46px;
  }

  .sz-trust-list {
    grid-template-columns: 1fr;
  }

  .sz-calculator {
    width: calc(100% - 20px) !important;
    padding: 14px;
  }

  .sz-calculator__summary div {
    grid-template-columns: 1fr;
  }

  .sz-calculator__summary strong {
    justify-self: start;
    text-align: left;
  }
}

@media screen and (max-width: 380px) {
  .sz-calculator__amount-row {
    width: 100%;
    gap: 8px;
    justify-content: space-between;
  }

  .sz-calculator__step {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 21px;
  }

  .sz-calculator__amount {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    gap: 6px;
  }

  .sz-calculator__amount input {
    width: 92px;
    font-size: 25px;
  }

  .sz-calculator__amount span {
    flex: 0 0 auto;
    font-size: 23px;
  }
}

/* Dynamic CRM showcase */
.sz-showcase-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f8ff 0%, #fff7ef 54%, #f6f8fc 100%);
}

.sz-showcase-hero {
  padding: 14px 0 6px;
  background: transparent;
}

.sz-showcase-hero__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(208, 218, 236, 0.95);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(31, 41, 55, 0.08);
}

.sz-showcase-hero__copy {
  min-width: 0;
}

.sz-showcase-hero__copy .sz-eyebrow {
  margin-bottom: 5px;
}

.sz-showcase-hero h1 {
  margin: 0 0 6px;
  color: var(--sz-ink);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.sz-showcase-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--sz-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.sz-showcase-hero__points {
  display: grid;
  gap: 7px;
  min-width: 210px;
}

.sz-showcase-hero__points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--sz-blue-dark);
  background: #eef5ff;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.sz-offers {
  padding: 14px 0 36px;
  background: transparent;
}

.sz-offers__head {
  max-width: 700px;
  margin: 0 auto 18px;
  text-align: center;
}

.sz-offers__head .sz-eyebrow {
  justify-content: center;
  margin-bottom: 6px;
}

.sz-offers__head h2 {
  margin: 0 0 7px;
  color: var(--sz-ink);
  font-size: clamp(23px, 3.2vw, 32px);
  font-weight: 900;
  line-height: 1.12;
}

.sz-offers__head p {
  margin: 0;
  color: var(--sz-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.sz-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.sz-offer-card {
  position: relative;
  display: grid;
  grid-template-rows: none;
  gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 16px;
  color: var(--sz-ink);
  text-decoration: none;
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
  overflow: visible;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.sz-offer-card:hover,
.sz-offer-card:focus {
  color: var(--sz-ink);
  border-color: rgba(255, 139, 36, 0.58);
  box-shadow: 0 18px 34px rgba(255, 139, 36, 0.16);
  text-decoration: none;
  transform: translateY(-1px);
}

.sz-offer-card:first-child {
  border-color: rgba(255, 139, 36, 0.68);
  box-shadow: 0 18px 40px rgba(255, 139, 36, 0.18);
}

.sz-offer-card__badge {
  position: static !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: start;
  justify-self: start;
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  min-height: 26px;
  margin-bottom: -2px;
  padding: 5px 8px;
  overflow: hidden;
  color: var(--sz-orange-dark);
  background: #fff2e7;
  border: 1px solid #ffd8b8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sz-offer-card__top {
  display: grid;
  grid-template-columns: minmax(96px, 136px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding-right: 0;
}

.sz-offer-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
}

.sz-offer-card__logo img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 42px;
  object-fit: contain;
}

.sz-offer-card__logo span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: var(--sz-blue-dark);
  background: #f6f8fc;
  border: 1px solid #e7ecf6;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.sz-offer-card__rating {
  display: grid;
  gap: 2px;
  justify-items: end;
  min-width: 0;
  color: var(--sz-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: right;
}

.sz-offer-stars {
  display: inline-flex;
  gap: 1px;
  color: #f5ba2a;
  font-size: 13px;
  line-height: 1;
}

.sz-offer-card__rating strong {
  color: var(--sz-ink);
  font-size: 15px;
  font-weight: 900;
}

.sz-offer-card__rating small {
  color: var(--sz-muted);
  font-size: 10px;
  font-weight: 800;
}

.sz-offer-card__terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: #f6f8fc;
  border: 1px solid #e7ecf6;
  border-radius: 9px;
}

.sz-offer-card__terms span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sz-offer-card__terms small {
  color: var(--sz-muted);
  font-size: 11px;
  font-weight: 800;
}

.sz-offer-card__terms strong {
  color: var(--sz-blue-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.sz-offer-card__meta {
  color: var(--sz-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.sz-offer-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 0 14px;
  color: #fff;
  background: var(--sz-orange);
  border-radius: 9px;
  box-shadow: 0 12px 24px rgba(255, 139, 36, 0.24);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.sz-offer-card:hover .sz-offer-card__button,
.sz-offer-card:focus .sz-offer-card__button {
  background: var(--sz-orange-dark);
}

.sz-offer-card__hint {
  color: var(--sz-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.sz-offers-empty {
  max-width: 520px;
  margin: 0 auto;
  padding: 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.08);
}

.sz-offers-empty h3 {
  margin: 0 0 8px;
  color: var(--sz-ink);
  font-size: 22px;
  font-weight: 900;
}

.sz-offers-empty p {
  margin: 0;
  color: var(--sz-muted);
  font-size: 14px;
  font-weight: 700;
}

.sz-offers__note {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .sz-showcase-hero__bar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sz-showcase-hero__points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sz-showcase-hero__points span {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .sz-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 680px) {
  .sz-showcase-hero {
    padding: 8px 0 4px;
  }

  .sz-showcase-hero__bar {
    width: calc(100% - 24px) !important;
    padding: 14px;
    border-radius: 10px;
  }

  .sz-showcase-hero h1 {
    font-size: 25px;
  }

  .sz-showcase-hero p {
    font-size: 13px;
  }

  .sz-showcase-hero__points {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sz-showcase-hero__points span {
    min-height: 30px;
    font-size: 12px;
  }

  .sz-offers {
    padding: 12px 0 30px;
  }

  .sz-offers__head {
    width: calc(100% - 24px);
    margin-bottom: 14px;
  }

  .sz-offers__head h2 {
    font-size: 23px;
  }

  .sz-offers__head p {
    font-size: 13px;
  }

  .sz-offer-grid {
    width: calc(100% - 24px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sz-offer-card {
    padding: 13px;
    border-radius: 9px;
  }

  .sz-offer-card__badge {
    justify-self: start;
    max-width: 100%;
    margin-bottom: -2px;
  }

  .sz-offer-card__top {
    grid-template-columns: minmax(92px, 128px) minmax(0, 1fr);
    padding-right: 0;
  }

  .sz-offer-card__logo img {
    max-width: 124px;
    max-height: 38px;
  }

  .sz-offer-card__terms {
    gap: 7px;
    padding: 9px;
  }

  .sz-offer-card__button {
    min-height: 46px;
  }

  .sz-offers__note {
    width: calc(100% - 24px);
  }
}

@media screen and (max-width: 360px) {
  .sz-offer-card__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .sz-offer-card__logo img {
    max-width: 110px;
  }

  .sz-offer-card__rating small {
    display: none;
  }

  .sz-offer-card__terms strong {
    font-size: 13px;
  }
}

.lead-form__trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-summary__edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  margin-top: 9px;
  padding: 0 12px;
  color: var(--sz-blue-dark);
  background: #eef4ff;
  border: 1px solid #d8e4ff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.lead-summary__edit:hover,
.lead-summary__edit:focus {
  color: var(--sz-blue-dark);
  background: #e4edff;
  text-decoration: none;
}

.lead-summary__edit[aria-expanded="true"] {
  background: #fff;
  border-color: var(--sz-border);
}

.lead-editor {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--sz-border);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.06);
}

.lead-editor[hidden] {
  display: none !important;
}

.lead-editor__row {
  display: grid;
  gap: 7px;
}

.lead-editor__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.lead-editor__head span {
  color: var(--sz-muted);
  font-size: 11px;
  font-weight: 800;
}

.lead-editor__head strong {
  color: var(--sz-orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.lead-editor__control {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 8px;
  align-items: center;
}

.lead-editor__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--sz-blue-dark);
  background: #eef4ff;
  border: 1px solid #d8e4ff;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.lead-editor__step:hover,
.lead-editor__step:focus {
  background: #e4edff;
}

.lead-editor__number {
  width: 100%;
  height: 36px;
  min-width: 0;
  padding: 0 10px;
  color: var(--sz-ink);
  background: var(--sz-soft);
  border: 1px solid var(--sz-border);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}

.lead-editor__range {
  width: 100%;
  accent-color: var(--sz-orange);
}

.lead-editor__done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  color: #fff;
  background: var(--sz-orange);
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.lead-editor__done:hover,
.lead-editor__done:focus {
  background: var(--sz-orange-dark);
}
