:root {
  --brand-ink: #111827;
  --brand-ink-soft: #344054;
  --brand-muted: #667085;
  --brand-line: #dce3ea;
  --brand-surface: #f1f4f9;
  --brand-surface-soft: #f8fafc;
  --brand-white: #ffffff;
  --brand-blue: #475afc;
  --brand-blue-dark: #3446dd;
  --brand-orange: #ff6134;
  --brand-orange-dark: #e94a20;
  --brand-oxygen: #007c95;
  --brand-green: #8bb31d;
  --brand-dark: #17242a;
  --brand-radius: 6px;
  --brand-shadow: 0 18px 50px rgba(17, 24, 39, 0.11);
  --brand-container: 1320px;
  --brand-header-height: 88px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--brand-header-height) + 20px);
}

body.site-shell {
  overflow-x: hidden;
  color: var(--brand-ink);
  background: var(--brand-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.site-shell h1,
.site-shell h2,
.site-shell h3,
.site-shell h4,
.site-shell h5,
.site-shell h6,
.site-shell button,
.site-shell input,
.site-shell textarea {
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

.site-shell h1,
.site-shell h2,
.site-shell h3,
.site-shell h4,
.site-shell h5,
.site-shell h6 {
  color: var(--brand-ink);
}

.site-shell a {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.site-shell img {
  max-width: 100%;
}

.site-shell :focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 10px 14px;
  color: var(--brand-white);
  background: var(--brand-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  color: var(--brand-white);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-shell .w-container,
.site-shell .base-container {
  width: 100%;
  max-width: var(--brand-container);
  padding-right: 28px;
  padding-left: 28px;
}

.site-shell .main-cont {
  flex: 1;
  padding-top: 0;
}

.site-shell .block-title {
  margin: 0;
  color: var(--brand-ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
}

.site-shell .block-title::after {
  width: 72px;
  height: 4px;
  bottom: -18px;
  background: var(--brand-orange);
}

.site-shell .btn {
  min-height: 52px;
  height: auto;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--brand-radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-shell .btn:hover {
  transform: translateY(-1px);
}

.site-shell .btn-primary,
.site-shell .btn-blue,
.site-shell .modal-type-2 .s-form .fields .btn {
  color: var(--brand-white);
  background: var(--brand-orange);
}

.site-shell .btn-primary:hover,
.site-shell .btn-blue:hover,
.site-shell .modal-type-2 .s-form .fields .btn:hover {
  color: var(--brand-white);
  background: var(--brand-orange-dark);
  opacity: 1;
}

.site-shell .btn-grey {
  color: var(--brand-ink);
  background: var(--brand-white);
  border-color: var(--brand-line);
}

.site-shell .btn-grey:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  background: var(--brand-white);
  opacity: 1;
}

/* Header */
.site-shell .header {
  min-height: var(--brand-header-height);
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 227, 234, 0.84);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.site-shell .header.sticky {
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
}

.site-shell .header .grid {
  min-height: var(--brand-header-height);
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 36px;
  padding: 0;
}

.site-shell .header .logo {
  justify-self: start;
}

.site-shell .header .logo-text {
  width: 156px;
}

.site-shell .header .logo img {
  display: block;
  width: 156px;
  height: auto;
}

.site-shell .header .links {
  justify-content: center;
  gap: 32px;
}

.site-shell .header .links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-shell .header .links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-shell .header .links a:hover,
.site-shell .header .links a[aria-current="page"] {
  color: var(--brand-blue);
}

.site-shell .header .links a:hover::after,
.site-shell .header .links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-shell .header .phone {
  margin: 0;
}

.site-shell .header .phone a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-shell .header .phone a:hover {
  color: var(--brand-white);
  border-color: var(--brand-orange);
  background: var(--brand-orange);
}

.site-shell .header .menu-hamburger {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  background: var(--brand-white);
}

.site-shell .header .menu-hamburger .uk-icon {
  color: var(--brand-ink);
  transform: none;
}

/* Hero */
.site-shell .hero {
  min-height: 680px;
  height: calc(100svh - var(--brand-header-height) - 42px);
  max-height: 860px;
  margin-top: 0;
  background: var(--brand-dark) !important;
}

.site-shell .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(11, 24, 32, 0.38);
  pointer-events: none;
}

.site-shell .hero .hero-img {
  filter: none;
  object-position: center 46%;
  transform: scale(1.005);
}

.site-shell .hero-content {
  z-index: 1;
  padding: 48px 0 54px;
}

.site-shell .hero-title {
  max-width: 930px;
  margin: 0 0 30px;
  color: var(--brand-white);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.02;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.site-shell .hero-title b {
  font-weight: 700;
}

.site-shell .hero-block {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--brand-radius);
  color: var(--brand-muted);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--brand-shadow);
  backdrop-filter: blur(12px);
}

.site-shell .hero-block .left {
  width: auto;
  gap: 0;
  font-size: 15px;
}

.site-shell .hero-block .left .item {
  min-height: 58px;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--brand-line);
}

.site-shell .hero-block .left .item:first-child {
  padding-left: 0;
}

.site-shell .hero-block .left .item:last-child {
  border-right: 0;
}

.site-shell .hero-block .icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 14px 0 0;
  border-radius: 50%;
  background: var(--brand-surface);
}

.site-shell .hero-block .icon img {
  width: 20px;
  height: 20px;
}

.site-shell .hero-block strong {
  color: var(--brand-ink);
  font-size: 16px;
  font-weight: 800;
}

.site-shell .hero-block .left .item:first-child strong {
  display: block;
}

.site-shell .hero-block .right {
  width: auto;
  display: block;
}

.site-shell .hero-block .btn {
  width: 100%;
  min-height: 60px;
  height: 60px;
  border-radius: var(--brand-radius);
}

/* Trust and shared section rhythm */
.site-shell .site-trust,
.site-shell .block3,
.site-shell .block13,
.site-shell .block14,
.site-shell .block15,
.site-shell .block17,
.site-shell .block24,
.site-shell .block9,
.site-shell .block10 {
  padding-top: 104px;
  padding-bottom: 104px;
}

.site-shell .site-trust {
  border: 0;
  color: var(--brand-white);
  background: var(--brand-dark);
  font-family: "Manrope", Arial, sans-serif;
}

.site-shell .site-trust__inner {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
}

.site-shell .site-trust h2 {
  color: var(--brand-white);
  font-size: 40px;
  font-weight: 700;
}

.site-shell .site-trust__intro > p:not(.seo-eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.site-shell .seo-eyebrow {
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-shell .site-trust__link {
  color: var(--brand-white);
  text-decoration-color: var(--brand-orange);
  text-decoration-thickness: 2px;
}

.site-shell .site-trust__link:hover {
  color: var(--brand-orange);
}

.site-shell .site-trust__facts {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.site-shell .site-trust__facts > div {
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.site-shell .site-trust__facts dt {
  color: rgba(255, 255, 255, 0.52);
}

.site-shell .site-trust__facts dd {
  color: var(--brand-white);
}

.site-shell .site-trust__facts a {
  color: inherit;
}

/* Project story */
.site-shell .block13 {
  background: var(--brand-white);
}

.site-shell .block13 .grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 84px;
  align-items: center;
  padding-top: 58px;
}

.site-shell .block13 .title {
  max-width: 560px;
  padding: 0 0 24px;
  color: var(--brand-ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
}

.site-shell .block13 .subtext {
  padding: 0 0 24px;
  color: var(--brand-muted);
  font-size: 17px;
  line-height: 1.75;
}

.site-shell .block13 ul {
  margin: 0;
  padding-left: 20px;
}

.site-shell .block13 ul li {
  padding: 8px 0;
  color: var(--brand-ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.site-shell .block13 ul li::marker {
  color: var(--brand-orange);
}

.site-shell .block13 .right {
  position: relative;
}

.site-shell .block13 .right::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42%;
  height: 42%;
  border-top: 3px solid var(--brand-green);
  border-right: 3px solid var(--brand-green);
  pointer-events: none;
}

.site-shell .block13 .right img {
  display: block;
  width: 100%;
  min-height: 470px;
  border-radius: var(--brand-radius);
  object-fit: cover;
  box-shadow: var(--brand-shadow);
}

/* Travel times */
.site-shell .block18 {
  padding: 0;
  background: var(--brand-blue);
}

.site-shell .block18 .flex {
  grid-gap: 0;
}

.site-shell .block18 .item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  text-align: left;
}

.site-shell .block18 .item:last-child {
  border-right: 0;
}

.site-shell .block18 .count {
  color: var(--brand-white);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
}

.site-shell .block18 .text {
  max-width: 250px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 500;
}

/* Plans */
.site-shell .block3 {
  background: var(--brand-surface);
}

.site-shell .block3 h2 {
  padding: 0;
}

.site-shell .block3 .subtext {
  max-width: 850px;
  padding: 48px 0 36px;
  color: var(--brand-muted);
  font-size: 17px;
  font-weight: 400;
}

.site-shell .block3 .uk-slider-items {
  padding: 8px 0 24px;
}

.site-shell .block3 .uk-card {
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  background: var(--brand-white);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-shell .block3 .uk-card:hover {
  border-color: rgba(71, 90, 252, 0.44);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  transform: translateY(-4px);
}

.site-shell .block3 .uk-card .img-main {
  min-height: 340px;
  padding: 28px;
  background: var(--brand-surface-soft);
}

.site-shell .block3 .uk-card .img-main img {
  max-height: 290px;
}

.site-shell .block3 .uk-card .card-body {
  padding: 22px;
  border-top: 1px solid var(--brand-line);
}

.site-shell .block3 .uk-card .uk-card-title {
  min-height: 56px;
  margin: 0;
  color: var(--brand-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.site-shell .block3 .uk-card .uk-card-title span {
  display: block;
  margin: 6px 0 0;
  color: var(--brand-blue);
  font-size: 22px;
  font-weight: 800;
}

.site-shell .block3 .uk-card .btns {
  padding-top: 18px;
}

.site-shell .block3 .uk-card .btn {
  min-height: 48px;
  height: 48px;
}

.site-shell .block3 .slider-nav {
  justify-content: flex-end;
  gap: 10px;
  padding-top: 18px;
}

.site-shell .block3 .slider-nav a {
  width: 48px;
  height: 48px;
  border-color: var(--brand-line);
  border-radius: 50%;
  color: var(--brand-ink);
  background: var(--brand-white);
}

.site-shell .block3 .slider-nav a:hover {
  color: var(--brand-white);
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

/* Mortgage */
.site-shell .block14 {
  background: var(--brand-white);
}

.site-shell .block14 .grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: stretch;
  padding-top: 0;
}

.site-shell .block14 .subtext {
  max-width: 580px;
  padding: 48px 0 32px;
  color: var(--brand-muted);
  font-size: 18px;
  font-weight: 500;
  opacity: 1;
}

.site-shell .block14 .right img {
  width: 100%;
  min-height: 480px;
  border-radius: var(--brand-radius);
  object-fit: cover;
}

.site-shell .block14 .tiles {
  grid-gap: 16px;
}

.site-shell .block14 .tiles .item {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  background: var(--brand-surface-soft);
}

.site-shell .block14 .tiles .item .hight {
  color: var(--brand-blue);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.site-shell .block14 .tiles .item .text {
  padding-top: 22px;
  color: var(--brand-muted);
  font-size: 15px;
  font-weight: 600;
  opacity: 1;
}

.site-shell .block15 {
  background: var(--brand-surface);
}

.site-shell .block15 .banks {
  gap: 16px;
  margin-top: 52px;
}

.site-shell .block15 .banks a {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-line);
  background: var(--brand-white);
}

.site-shell .block15 .banks img {
  max-height: 120px;
  filter: grayscale(100%);
  opacity: 0.62;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-shell .block15 .banks a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.site-shell .block16 {
  padding: 104px 0;
  color: var(--brand-white);
  background: var(--brand-blue);
}

.site-shell .block16 .grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 80px;
  align-items: center;
  padding: 0;
}

.site-shell .block16 .title {
  margin: 0;
  padding: 0;
  color: var(--brand-white);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
}

.site-shell .block16 .title b {
  color: var(--brand-orange);
  font-weight: 800;
}

.site-shell .block16 .text {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  opacity: 1;
}

.site-shell .block16 .citate {
  max-width: 660px;
  justify-content: flex-start;
  margin-top: 42px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--brand-radius);
  color: var(--brand-white);
  background: rgba(255, 255, 255, 0.09);
  font-size: 17px;
}

.site-shell .block16 .citate sub {
  left: 0;
  margin-right: 18px;
  color: var(--brand-orange);
}

.site-shell .block16 .right .s-form {
  padding: 30px;
  border-radius: var(--brand-radius);
  color: var(--brand-ink);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
}

/* Forms */
.site-shell .s-form {
  padding-top: 0;
}

.site-shell .s-form .fields {
  gap: 18px;
}

.site-shell .s-form .field-label {
  margin-bottom: 8px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

.site-shell .s-form .uk-form-icon:not(.uk-form-icon-flip) ~ .uk-input,
.site-shell .s-form .uk-input {
  min-height: 54px;
  height: 54px;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  color: var(--brand-ink);
  background: var(--brand-white);
}

.site-shell .s-form .uk-form-icon {
  color: var(--brand-blue);
}

.site-shell .s-form .uk-input:focus,
.site-shell .s-form .uk-textarea:focus {
  border-color: var(--brand-blue);
}

.site-shell .s-form .uk-textarea {
  min-height: 116px;
  padding: 14px 18px;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
}

.site-shell .s-form .fields .btn {
  width: 100%;
  min-height: 54px;
  height: 54px;
  border-radius: var(--brand-radius);
  color: var(--brand-white);
  background: var(--brand-orange);
}

.site-shell .s-form .fields .btn:hover {
  background: var(--brand-orange-dark);
}

.site-shell .s-form .checkbox {
  color: var(--brand-muted);
  font-size: 12px;
  line-height: 1.45;
}

.site-shell .s-form .checkbox [type="checkbox"] {
  accent-color: var(--brand-blue);
}

/* Map and infrastructure */
.site-shell .block24 {
  background: var(--brand-white);
}

.site-shell .block24 br {
  display: none;
}

.site-shell .block24 > .base-container > a {
  display: block;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  cursor: zoom-in;
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.06);
}

.site-shell .block24 > .base-container > a img {
  display: block;
  width: 100%;
  transition: transform 360ms ease;
}

.site-shell .block24 > .base-container > a:hover img {
  transform: scale(1.015);
}

.site-shell .block17 {
  background: var(--brand-surface);
}

.site-shell .block17 .head {
  padding-bottom: 58px;
}

.site-shell .block17 .cards {
  gap: 44px 24px;
  padding-bottom: 0;
}

.site-shell .block17 .cards .item {
  min-width: 0;
}

.site-shell .block17 .cards .item img {
  height: 310px;
  border-radius: var(--brand-radius);
  transition: transform 260ms ease, filter 260ms ease;
}

.site-shell .block17 .cards .item:hover img {
  filter: saturate(1.06);
  transform: translateY(-3px);
}

.site-shell .block17 .cards .item .card-title {
  min-height: 82px;
  padding: 22px 0 10px;
  color: var(--brand-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.site-shell .block17 .cards .item .card-text {
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Gallery and tour form */
.site-shell .block8 {
  background: var(--brand-dark);
}

.site-shell .block8 .grid-container {
  max-width: 1920px;
  gap: 4px;
  background: var(--brand-dark);
}

.site-shell .block8 .grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transform: none;
}

.site-shell .block8 .grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 180ms ease;
}

.site-shell .block8 .grid-item:hover {
  transform: none;
}

.site-shell .block8 .grid-item:hover::after {
  background: rgba(71, 90, 252, 0.12);
}

.site-shell .block8 .grid-item img {
  transition: transform 360ms ease;
}

.site-shell .block8 .grid-item:hover img {
  transform: scale(1.035);
}

.site-shell .block8 .form-wr {
  margin-top: 0;
  padding: 0 0 104px;
  color: var(--brand-white);
  background: var(--brand-dark);
}

.site-shell .block8 .s-form {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 20px 70px;
  align-items: end;
  padding: 46px;
  border-radius: 0 0 var(--brand-radius) var(--brand-radius);
  color: var(--brand-white);
  background: var(--brand-blue);
}

.site-shell .block8 .s-form .uk-modal-title,
.site-shell .block8 .s-form .subtext {
  grid-column: 1;
  color: var(--brand-white);
}

.site-shell .block8 .s-form .uk-modal-title {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
}

.site-shell .block8 .s-form .subtext {
  align-self: start;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.site-shell .block8 .s-form .fields {
  grid-column: 2;
  grid-row: 1 / span 2;
  flex-direction: row;
  align-items: flex-end;
}

.site-shell .block8 .s-form .policy {
  grid-column: 2;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Management, documents and contacts */
.site-shell .block9 {
  background: var(--brand-white);
}

.site-shell .block9 .grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.site-shell .block9 .title,
.site-shell .block10 .title,
.site-shell .block11 .title {
  margin: 0;
  color: var(--brand-ink);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.12;
}

.site-shell .block9 .text {
  padding: 24px 0 34px;
  color: var(--brand-muted);
  font-size: 16px;
}

.site-shell .block9 .list .item:not(:first-child) {
  margin-top: 24px;
}

.site-shell .block9 .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.site-shell .block9 .list h6 {
  color: var(--brand-ink);
  font-size: 16px;
  font-weight: 700;
}

.site-shell .block9 .list p {
  color: var(--brand-muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-shell .block9 .right .btn {
  margin-bottom: 22px;
}

.site-shell .block9 .right img {
  width: 100%;
  min-height: 440px;
  border-radius: var(--brand-radius);
  object-fit: cover;
}

.site-shell .block10 {
  background: var(--brand-surface);
}

.site-shell .block10 .grid {
  min-height: 410px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  background: var(--brand-white);
}

.site-shell .block10 .left {
  padding: 54px;
}

.site-shell .block10 .left .btn {
  max-width: 280px;
}

.site-shell .block10 .right {
  overflow: hidden;
  background: var(--brand-blue);
}

.site-shell .block10 .right img {
  width: 100%;
  max-height: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.site-shell .block11 {
  color: var(--brand-white);
  background: var(--brand-dark);
}

.site-shell .block11 .grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  gap: 90px;
  padding: 104px 0;
}

.site-shell .block11 .title {
  color: var(--brand-white);
  font-size: 46px;
}

.site-shell .block11 .text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  opacity: 1;
}

.site-shell .block11 .location {
  padding-top: 36px;
}

.site-shell .block11 .location .t {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 1;
}

.site-shell .block11 .location .adress {
  max-width: 560px;
  margin-top: 6px;
  color: var(--brand-white);
  font-size: 18px;
  font-weight: 600;
}

.site-shell .block11 .btns {
  gap: 10px;
  padding-top: 36px;
}

.site-shell .block11 .btns a {
  min-width: 0;
  justify-content: flex-start;
  overflow-wrap: anywhere;
}

.site-shell .block11 .right .s-form {
  padding: 30px;
  border-radius: var(--brand-radius);
  color: var(--brand-ink);
  background: var(--brand-white);
}

/* Footer */
.site-shell .block12 {
  color: var(--brand-white);
  background: #0c151a;
}

.site-shell .block12 .grid {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  padding: 70px 0 34px;
}

.site-shell .block12 .logo img {
  width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.site-shell .block12 .links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  padding-top: 0;
}

.site-shell .block12 .links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  text-decoration: none;
}

.site-shell .block12 .links a:hover {
  color: var(--brand-white);
}

.site-shell .site-footer-identity {
  gap: 0;
  margin-top: 0;
  padding: 0;
  border-top-color: rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.site-shell .site-footer-identity > div {
  min-height: 132px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.site-shell .site-footer-identity > div:first-child {
  padding-left: 0;
}

.site-shell .site-footer-identity > div:last-child {
  border-right: 0;
}

.site-shell .block12 .policy {
  padding: 30px 0 38px;
  color: rgba(255, 255, 255, 0.48);
  text-align: left;
}

/* SEO pages */
.site-shell .seo-page {
  --seo-ink: var(--brand-ink);
  --seo-muted: var(--brand-muted);
  --seo-surface: var(--brand-surface);
  --seo-border: var(--brand-line);
  --seo-accent: var(--brand-orange);
  --seo-dark: var(--brand-dark);
  --seo-white: var(--brand-white);
  font-family: "Manrope", Arial, sans-serif;
}

.site-shell .seo-hero {
  min-height: 640px;
}

.site-shell .seo-hero__overlay {
  background: rgba(11, 24, 32, 0.55);
}

.site-shell .seo-hero__content {
  padding-top: 100px;
  padding-bottom: 72px;
}

.site-shell .seo-breadcrumbs,
.site-shell .site-information-breadcrumbs {
  font-size: 13px;
}

.site-shell .seo-hero h1 {
  max-width: 1040px;
  color: var(--brand-white);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.06;
}

.site-shell .seo-hero__lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.site-shell .seo-fact {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-shell .seo-fact strong {
  color: var(--brand-blue);
  font-size: 25px;
}

.site-shell .seo-band {
  padding: 104px 0;
}

.site-shell .seo-section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.site-shell .seo-section-heading h2,
.site-shell .seo-copy-layout h2,
.site-shell .seo-related h2,
.site-shell .seo-cta h2,
.site-shell .seo-map-copy h2 {
  font-size: 42px;
  font-weight: 700;
}

.site-shell .seo-plan-grid {
  gap: 16px;
}

.site-shell .seo-plan-card,
.site-shell .seo-feature-card,
.site-shell .seo-map,
.site-shell .seo-contact-grid > * {
  border-radius: var(--brand-radius);
}

.site-shell .seo-plan-card {
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-shell .seo-plan-card:hover {
  border-color: rgba(71, 90, 252, 0.42);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.09);
  transform: translateY(-3px);
}

.site-shell .seo-card-action {
  color: var(--brand-blue);
  text-decoration-color: var(--brand-orange);
}

.site-shell .seo-feature-card img {
  height: 280px;
}

.site-shell .seo-steps li {
  border-top-color: var(--brand-orange);
  border-radius: 0 0 var(--brand-radius) var(--brand-radius);
}

.site-shell .seo-steps li > span {
  border-radius: 50%;
  background: var(--brand-blue);
}

.site-shell .seo-faq-list summary {
  font-weight: 700;
}

.site-shell .seo-related__links a {
  border-radius: 999px;
}

.site-shell .seo-related__links a:hover {
  color: var(--brand-white);
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.site-shell .seo-cta {
  background: var(--brand-blue);
}

.site-shell .seo-cta h2 {
  color: var(--brand-white);
}

.site-shell .site-information-hero {
  padding-top: 104px;
  background: var(--brand-dark);
}

.site-shell .site-information-hero h1 {
  max-width: 900px;
  color: var(--brand-white);
  font-size: 54px;
  font-weight: 700;
}

.site-shell .site-information-band {
  padding: 96px 0;
}

.site-shell .site-information-layout h2 {
  font-size: 40px;
  font-weight: 700;
}

.site-shell .site-information-list a,
.site-shell .site-source-list a {
  color: var(--brand-blue);
}

/* Mobile menu, modals and cookie */
.site-shell .mobile-menu {
  width: min(420px, 92vw);
  padding: 30px;
  color: var(--brand-white);
  background: var(--brand-dark);
}

.site-shell .mobile-menu h3 {
  max-width: 260px;
  color: var(--brand-white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.site-shell .mobile-menu .grid {
  gap: 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-shell .mobile-menu .grid a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.site-shell .mobile-menu .grid a:hover {
  color: var(--brand-orange);
}

.site-shell .mobile-menu .phone a {
  color: var(--brand-white);
}

.site-shell .uk-modal {
  background: rgba(11, 24, 32, 0.72);
}

.site-shell .modal-type-2 {
  max-width: 560px !important;
  padding: 42px;
  border-radius: var(--brand-radius);
  box-shadow: var(--brand-shadow);
}

.site-shell .modal-type-2 .uk-modal-title {
  color: var(--brand-ink);
  font-size: 30px;
  line-height: 1.2;
}

.site-shell .modal-type-2 .s-form .subtext {
  color: var(--brand-muted);
}

.site-shell .cookie {
  right: 18px;
  left: auto;
  width: min(620px, calc(100vw - 36px));
  max-width: 720px;
  min-height: 76px;
  padding: 14px 14px 14px 20px;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius);
  color: var(--brand-ink);
  background: var(--brand-white);
  box-shadow: var(--brand-shadow);
}

.site-shell .cookie-text a {
  color: var(--brand-blue);
}

@media (max-width: 1200px) {
  :root {
    --brand-header-height: 80px;
  }

  .site-shell .header .grid {
    grid-template-columns: 166px minmax(0, 1fr) auto;
    gap: 22px;
  }

  .site-shell .header .links {
    gap: 20px;
  }

  .site-shell .hero-title {
    font-size: 62px;
  }

  .site-shell .hero-block {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .site-shell .block13 .grid,
  .site-shell .block14 .grid,
  .site-shell .block9 .grid {
    gap: 52px;
  }
}

@media (max-width: 992px) {
  .site-shell .w-container,
  .site-shell .base-container {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-shell .header .grid {
    grid-template-columns: 1fr auto auto;
  }

  .site-shell .header .phone a {
    min-height: 42px;
    padding: 0 14px;
  }

  .site-shell .hero {
    min-height: 700px;
    height: calc(100svh - var(--brand-header-height) - 24px);
  }

  .site-shell .hero-title {
    font-size: 54px;
  }

  .site-shell .hero-block {
    grid-template-columns: 1fr;
  }

  .site-shell .hero-block .left {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-shell .site-trust__inner,
  .site-shell .block13 .grid,
  .site-shell .block14 .grid,
  .site-shell .block16 .grid,
  .site-shell .block9 .grid,
  .site-shell .block11 .grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .site-shell .block13 .right {
    order: -1;
  }

  .site-shell .block14 .right img,
  .site-shell .block9 .right img {
    min-height: 400px;
  }

  .site-shell .block8 .s-form {
    grid-template-columns: 1fr;
  }

  .site-shell .block8 .s-form .uk-modal-title,
  .site-shell .block8 .s-form .subtext,
  .site-shell .block8 .s-form .fields,
  .site-shell .block8 .s-form .policy {
    grid-column: 1;
    grid-row: auto;
  }

  .site-shell .block10 .grid {
    grid-template-columns: 1fr;
  }

  .site-shell .block10 .right {
    min-height: 320px;
  }

  .site-shell .block11 .right .s-form {
    max-width: 620px;
  }

  .site-shell .seo-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  :root {
    --brand-header-height: 72px;
  }

  .site-shell .w-container,
  .site-shell .base-container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-shell .header .grid {
    min-height: var(--brand-header-height);
    gap: 10px;
  }

  .site-shell .header .logo-text,
  .site-shell .header .logo img {
    width: 128px;
  }

  .site-shell .header .phone {
    margin-right: 0;
  }

  .site-shell .header .phone a {
    min-height: 40px;
    padding: 0 11px;
    font-size: 12px;
  }

  .site-shell .header .menu-hamburger {
    width: 40px;
    height: 40px;
  }

  .site-shell .hero {
    min-height: 720px;
    height: calc(100svh - var(--brand-header-height) - 22px);
    max-height: none;
  }

  .site-shell .hero .hero-img {
    object-position: center;
  }

  .site-shell .hero-content {
    padding: 34px 0 24px;
  }

  .site-shell .hero-title {
    max-width: 520px;
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.06;
  }

  .site-shell .hero-block {
    gap: 16px;
    padding: 16px;
  }

  .site-shell .hero-block .left {
    grid-template-columns: 1fr;
  }

  .site-shell .hero-block .left .item,
  .site-shell .hero-block .left .item:first-child {
    min-height: 50px;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid var(--brand-line);
  }

  .site-shell .hero-block .left .item:last-child {
    border-bottom: 0;
  }

  .site-shell .hero-block .btn {
    min-height: 52px;
    height: 52px;
  }

  .site-shell .site-trust,
  .site-shell .block3,
  .site-shell .block13,
  .site-shell .block14,
  .site-shell .block15,
  .site-shell .block17,
  .site-shell .block24,
  .site-shell .block9,
  .site-shell .block10,
  .site-shell .block16 {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .site-shell .block-title {
    font-size: 36px;
  }

  .site-shell .site-trust h2 {
    font-size: 32px;
  }

  .site-shell .site-trust__facts {
    grid-template-columns: 1fr;
  }

  .site-shell .site-trust__facts > div,
  .site-shell .site-trust__facts > div:nth-child(2n) {
    min-height: 94px;
    padding: 20px 0;
    border-right: 0;
  }

  .site-shell .block13 .grid {
    padding-top: 46px;
  }

  .site-shell .block13 .right::before {
    display: none;
  }

  .site-shell .block13 .right img,
  .site-shell .block14 .right img,
  .site-shell .block9 .right img {
    min-height: 0;
  }

  .site-shell .block13 .title {
    font-size: 28px;
  }

  .site-shell .block18 .item {
    min-height: 132px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .site-shell .block18 .item:last-child {
    border-bottom: 0;
  }

  .site-shell .block18 .count {
    font-size: 34px;
  }

  .site-shell .block3 .subtext {
    padding-top: 42px;
  }

  .site-shell .block3 .uk-card .img-main {
    min-height: 300px;
  }

  .site-shell .block14 .subtext {
    padding-top: 42px;
  }

  .site-shell .block14 .tiles {
    grid-template-columns: 1fr;
  }

  .site-shell .block14 .tiles .item {
    min-height: 150px;
  }

  .site-shell .block15 .banks {
    grid-template-columns: 1fr 1fr;
    margin-top: 44px;
  }

  .site-shell .block15 .banks a {
    min-height: 112px;
  }

  .site-shell .block16 .title,
  .site-shell .block11 .title {
    font-size: 38px;
  }

  .site-shell .block16 .right .s-form,
  .site-shell .block11 .right .s-form {
    padding: 22px;
  }

  .site-shell .block17 .cards {
    grid-template-columns: 1fr;
  }

  .site-shell .block17 .cards .item img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .site-shell .block17 .cards .item .card-title {
    min-height: 0;
  }

  .site-shell .block8 .grid-container {
    grid-template-columns: 1fr 1fr;
  }

  .site-shell .block8 .form-wr {
    padding-bottom: 72px;
  }

  .site-shell .block8 .s-form {
    gap: 14px;
    padding: 28px 20px;
  }

  .site-shell .block8 .s-form .uk-modal-title {
    font-size: 30px;
  }

  .site-shell .block8 .s-form .fields {
    flex-direction: column;
    align-items: stretch;
  }

  .site-shell .block9 .title,
  .site-shell .block10 .title {
    font-size: 36px;
  }

  .site-shell .block10 .left {
    min-height: 300px;
    padding: 30px 24px;
  }

  .site-shell .block10 .right {
    min-height: 260px;
  }

  .site-shell .block11 .grid {
    padding: 72px 0;
  }

  .site-shell .block11 .btns {
    grid-template-columns: 1fr;
  }

  .site-shell .block12 .grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 32px;
  }

  .site-shell .block12 .links {
    grid-template-columns: 1fr;
  }

  .site-shell .site-footer-identity {
    grid-template-columns: 1fr;
  }

  .site-shell .site-footer-identity > div,
  .site-shell .site-footer-identity > div:first-child {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-shell .site-footer-identity > div:last-child {
    border-bottom: 0;
  }

  .site-shell .seo-hero {
    min-height: 570px;
  }

  .site-shell .seo-hero__content {
    padding-top: 76px;
    padding-bottom: 46px;
  }

  .site-shell .seo-hero h1 {
    font-size: 38px;
  }

  .site-shell .seo-hero__lead {
    font-size: 16px;
  }

  .site-shell .seo-band {
    padding: 72px 0;
  }

  .site-shell .seo-section-heading h2,
  .site-shell .seo-copy-layout h2,
  .site-shell .seo-related h2,
  .site-shell .seo-cta h2,
  .site-shell .seo-map-copy h2,
  .site-shell .site-information-layout h2 {
    font-size: 34px;
  }

  .site-shell .site-information-hero {
    padding-top: 78px;
  }

  .site-shell .site-information-hero h1 {
    font-size: 38px;
  }

  .site-shell .site-information-band {
    padding: 72px 0;
  }

  .site-shell .seo-cta__inner {
    align-items: flex-start;
  }

  .site-shell .modal-type-2 {
    padding: 34px 20px;
  }

  .site-shell .cookie {
    right: 10px;
    left: 10px;
    width: auto;
  }
}

@media (max-width: 479px) {
  .site-shell .header .phone a {
    padding: 0 8px;
    font-size: 10px;
  }

  .site-shell .hero {
    min-height: 720px;
  }

  .site-shell .hero-title {
    font-size: 36px;
  }

  .site-shell .hero-block {
    padding: 14px;
  }

  .site-shell .block15 .banks {
    grid-template-columns: 1fr;
  }

  .site-shell .block8 .grid-container {
    grid-template-columns: 1fr;
  }

  .site-shell .seo-facts__grid,
  .site-shell .seo-feature-grid,
  .site-shell .seo-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-shell *,
  .site-shell *::before,
  .site-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
