/* Presentation only. Original copy, links and application scripts are preserved. */
:root {
  color-scheme: light;
  --ink: #152b47;
  --muted: #4d6077;
  --blue: #2459da;
  --blue-hover: #1845b5;
  --paper: #f7f9fd;
  --line: #dce4f0;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --width: 1184px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  text-align: left;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--blue); text-underline-offset: .22em; }
a:hover { text-decoration-thickness: 2px; }
button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #3877ef;
  outline-offset: 5px;
}
::selection { color: #fff; background: var(--blue); }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { font-size: 17px; line-height: 1.75; }
.new-span_bold { font-weight: 700; }

/* An understated wordmark lets the content lead. */
body > header {
  max-width: var(--width);
  margin: 0 auto;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.new-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}
.new-logo::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 7px solid var(--blue);
  border-radius: 11px 11px 11px 3px;
  transform: rotate(-7deg);
}
main { max-width: var(--width); margin: 0 auto; padding-bottom: 36px; }

/* Editorial split hero; the existing photograph is never behind the copy. */
.new-big-image {
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
  height: auto;
  min-height: 690px;
  padding: 65px 0 85px;
  background: none;
  text-align: left;
  filter: none;
}
.new-big-image::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 530px;
  border-radius: 150px 30px 30px 30px;
  background: #d9e8fa url("14.jpg") center / cover no-repeat;
  box-shadow: 16px 16px 0 #e0eafa, 0 20px 55px -35px #21345399;
  transform: rotate(2deg);
}
.new-big-image::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -24px;
  width: 300px;
  height: 250px;
  opacity: .7;
  background: radial-gradient(#aec4e9 1.4px, transparent 1.4px) 0 0 / 15px 15px;
  mask-image: linear-gradient(45deg, transparent, #000);
}
.new-big-image .new-big-image-text {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  padding: 0;
  background: none;
  color: var(--ink);
  animation: entrance .65s ease-out both;
}
.new-big-image h1 {
  margin: 0;
  max-width: 640px;
  color: var(--ink);
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 750;
  line-height: 1.07;
  letter-spacing: -.055em;
}
.new-big-image h2 {
  max-width: 470px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -.015em;
  text-wrap: pretty;
}
.new-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  margin: 0;
  padding: 16px 25px;
  border: 1px solid var(--blue);
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px -9px #2459da88;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 750;
  letter-spacing: .025em;
  animation: none;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.new-button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 12px 25px -12px #2459da99;
  transform: translateY(-2px);
}
.new-button:active { transform: translateY(0); }

/* Shared section rhythm. */
main > h2 {
  max-width: 850px;
  margin: 100px auto 32px;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -.04em;
  text-align: center;
}
.new-big-image + h2 { margin-top: 38px; margin-bottom: 16px; }
main > h3 {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.new-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
}
.new-section > div {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}
.new-section img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55;
  border-radius: 0;
  object-fit: cover;
}
.new-section p {
  margin: 0;
  padding: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}
.intro-cards > .new-button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 12px;
}
.new-section_2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  overflow: hidden;
  text-align: left;
}
.new-section_2 > div {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 38px;
  background: #eef3fc;
}
.new-section_2 > div:nth-child(2), .new-section_2 > div:nth-child(3) { background: #fff; }
.new-section_2 > div::before {
  content: "";
  display: block;
  width: 28px;
  height: 5px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--blue);
}
.new-section_2 p { max-width: 440px; margin: 0; color: var(--muted); font-size: 17px; }
.new-section_2 .new-span_bold { color: var(--ink); font-size: 20px; font-weight: 700; }
.task-cards > div { border: 0; background: transparent; }
.task-cards img { aspect-ratio: 1.42; border-radius: 24px; }
.task-cards p { padding: 23px 4px 0; color: var(--ink); font-size: 21px; line-height: 1.35; }

/* Preserve the participation copy while giving long paragraphs room to breathe. */
main > .participation-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: start;
  margin: 100px 0 20px !important;
  padding: 48px;
  border: 1px solid #cfddf8;
  border-radius: 28px;
  background: #eaf0fd;
}
.participation-panel h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1.17;
  letter-spacing: -.035em;
}
.participation-panel p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.participation-panel .new-span_bold { color: var(--ink); }
.participation-panel a.new-link1 { color: #164ec5; text-decoration: underline; }
main > .steps-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 0 !important;
  padding: 36px !important;
  border: 1px solid var(--line);
  border-radius: 28px !important;
  background: #fff !important;
}
.steps-panel > div { min-width: 0; }
.steps-panel > div > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-bottom: 16px;
  border-radius: 15px;
  background: #f0f4fc;
  font-size: 23px;
}
.steps-panel p { margin: 0; color: var(--muted); font-size: 16px; }
.steps-panel p.new-span_bold, .steps-panel .new-span_bold { color: var(--ink); }

/* Original testimonials, without added stars, ratings or other proof. */
.reviews-grid { gap: 18px; margin-bottom: 90px; }
.reviews-grid > .new-otziv {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: start;
  align-items: center;
  gap: 18px 12px;
  padding: 26px;
  border-radius: 22px;
}
.reviews-grid .new-otziv img {
  width: 44px;
  height: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}
.reviews-grid .new-name { padding: 0; color: var(--ink); font-size: 16px; font-weight: 700; }
.reviews-grid p:not(.new-name) { grid-column: 1 / -1; padding: 0; font-size: 15px; line-height: 1.75; }

/* Existing FAQ controls retain their original behavior. */
.new-block {
  display: block;
  max-width: 920px;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: left;
  transition: border-color .2s, background .2s;
}
.new-block:hover { border-color: #97b6ed; }
.new-block:has(.new-description[style*="block"]) { border-color: #a8bfea; background: #eef3fc; }
.new-title { width: 100%; padding: 24px 28px; color: var(--ink); font-size: 18px; line-height: 1.5; }
.new-block hr { display: none; }
.new-description {
  width: 100%;
  padding: 0 28px 25px;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* Closing photo panel. */
.new-big-image_2 {
  isolation: isolate;
  display: block;
  height: auto;
  min-height: 450px;
  margin-top: 90px;
  padding: 65px;
  border-radius: 32px;
  background: #152740;
  overflow: hidden;
  filter: none;
  text-align: left;
}
.new-big-image_2::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #14263ff5 8%, #14263fe8 42%, #14263f35 100%), url("13.jpg") right center / cover no-repeat;
}
.new-big-image_2 .new-big-image-text { max-width: 650px; padding: 0; background: none; }
.new-big-image_2 h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 51px);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.new-big-image_2 h2 { max-width: 480px; margin: 24px 0 28px; color: #dae6f7; font-size: 19px; font-weight: 400; line-height: 1.6; }
.new-big-image_2 .new-button { border-color: #fff; background: #fff; color: var(--ink); }
.new-big-image_2 .new-button:hover { background: #e7efff; border-color: #e7efff; }
body > footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  max-width: var(--width);
  margin: 0 auto;
  padding: 30px 90px 50px;
  border-top: 1px solid var(--line);
  background: transparent;
}
footer a { margin: 0; padding: 5px 0; color: var(--muted); font-size: 14px; }
footer .site-operator {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  overflow-wrap: anywhere;
}
footer .site-operator a { color: var(--blue); text-decoration: underline; }

/* Restyle the existing floating control, without changing its destination. */
body > button:has(.fab) {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 4px;
  border: 1px solid #d4e2f1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 30px #172b4729;
  transition: transform .2s, box-shadow .2s;
}
body > button:has(.fab):hover { transform: translateY(-3px); box-shadow: 0 12px 30px #172b4740; }
body > button .fab[data-v-91ccf3ff] { position: static; width: 100%; height: 100%; }
body > button .fab__inner, body > button .fab__inner > div[data-v-91ccf3ff],
body > button .fab__inner > div > div[data-v-91ccf3ff],
body > button .icon-container[data-v-91ccf3ff] { width: 100%; height: 100%; background: transparent; }
body > button .tg { width: 52px !important; height: 52px; animation: none; }

/* Visual treatment only: no changes to the legacy cookie implementation. */
body [data-testid="uc-overlay"] { background: #13263f; opacity: .55; backdrop-filter: blur(6px); }
body #uc-center-container {
  width: min(590px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  border: 1px solid #e2e9f3;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 100px #07142745;
  font-family: var(--font);
  color: var(--ink);
  overflow: hidden;
  align-self: center;
}
body #uc-center-container [data-testid="uc-container"] { flex: 1 1 auto; min-height: 0; height: auto; }
body #uc-fading-wrapper { min-height: 0; }
body #uc-center-container [data-testid="uc-vertical-scroller"] { min-height: 0; overflow-y: auto; }
body #uc-center-container .BZDZb { height: auto; }
body #uc-center-container [data-testid="uc-header-wrapper"] { padding: 0; }
body #uc-center-container .lnhEwC { width: 100%; }
body #uc-center-container > .dRvQzh { flex: 0 0 auto; padding: 0; }
body #uc-center-container .iXSECa { padding: 0; }
body #uc-heading-title { color: var(--ink); font-family: var(--font); font-size: 24px; font-weight: 750; line-height: 1.25; letter-spacing: -.025em; }
body #uc-center-container [data-testid="uc-message-container"] { color: var(--muted); font-size: 14px; line-height: 1.75; }
body #uc-center-container [data-testid="uc-header"] { padding: 30px; }
body #uc-center-container [data-testid="uc-footer"] { padding: 0 30px 28px; }
body #uc-center-container [data-testid="uc-anchor-link"] { color: var(--blue); font-size: 13px; }
body #uc-center-container [data-testid="uc-buttons-container"] { gap: 12px; margin: 0 !important; }
body #uc-center-container [data-testid="uc-buttons-container"] > button {
  min-height: 48px;
  margin: 0 !important;
  padding: 12px 16px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}
body #uc-center-container [data-testid="uc-more-button"] { background: #fff; color: var(--blue); }
body #uc-center-container [data-testid="uc-accept-all-button"] { background: var(--blue); color: #fff; }

/* The existing legal documents share the same visual system. */
body:has(.block_more_info) { padding: 48px 24px; }
.block_more_info {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 56px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: 24px;
  background: #fff;
  font-family: var(--font);
  line-height: 1.8;
}
.block_more_info h2 { margin: 30px 0 16px; color: var(--ink); font-size: 25px; line-height: 1.3; letter-spacing: -.025em; text-align: left; overflow-wrap: anywhere; }
.block_more_info h2:first-child { margin-top: 0; font-size: 35px; }
.block_more_info p { margin: 0 0 20px; color: var(--muted); font-size: 16px; text-align: left; overflow-wrap: anywhere; }

@keyframes entrance {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 1280px) {
  body > header, main, body > footer { width: calc(100% - 64px); }
  .new-big-image { gap: 40px; }
  .new-big-image::after { right: 0; }
}
@media (max-width: 960px) {
  .new-big-image { min-height: 600px; gap: 30px; }
  .new-big-image::before { height: 440px; border-radius: 100px 24px 24px 24px; }
  .new-big-image h1 { font-size: 52px; }
  .new-big-image h2 { font-size: 19px; }
  .new-section { gap: 16px; }
  .new-section p { padding: 20px; font-size: 15px; }
  .new-section_2 > div { padding: 30px; }
  main > .participation-panel { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
  .participation-panel h2 { max-width: 650px; }
  main > .steps-panel { gap: 22px; padding: 28px !important; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .task-cards p { padding: 20px 0 0; font-size: 19px; }
}
@media (max-width: 700px) {
  body > header, main, body > footer { width: calc(100% - 40px); }
  body > header { padding: 20px 0; }
  .new-logo { font-size: 23px; }
  .new-logo::before { width: 29px; height: 29px; border-width: 6px; }
  .new-big-image { grid-template-columns: 1fr; gap: 36px; min-height: 0; padding: 46px 0 55px; }
  .new-big-image .new-big-image-text { grid-column: 1; grid-row: 1; }
  .new-big-image::before { grid-column: 1; grid-row: 2; height: auto; aspect-ratio: 1.22; width: calc(100% - 12px); border-radius: 80px 24px 24px 24px; transform: rotate(1deg); box-shadow: 10px 10px 0 #e0eafa; }
  .new-big-image::after { top: auto; right: 0; bottom: 25px; width: 240px; height: 220px; }
  .new-big-image h1 { max-width: 580px; font-size: clamp(40px, 8.8vw, 58px); line-height: 1.06; letter-spacing: -.05em; }
  .new-big-image h2 { max-width: 500px; margin: 22px 0 26px; font-size: 18px; line-height: 1.6; }
  .new-button { min-height: 54px; padding: 15px 22px; font-size: 14px; }
  main > h2 { margin-top: 66px; margin-bottom: 26px; font-size: 33px; }
  .new-big-image + h2 { margin-top: 20px; margin-bottom: 16px; }
  main > h3 { font-size: 16px; margin-bottom: 28px; }
  .new-section { grid-template-columns: 1fr; gap: 20px; }
  .new-section > div { border-radius: 22px; }
  .new-section img { aspect-ratio: 1.7; }
  .new-section p { padding: 23px; font-size: 16px; }
  .intro-cards > .new-button { width: 100%; margin-top: 3px; }
  .new-section_2 { border-radius: 23px; }
  .new-section_2 > div { padding: 25px; }
  .new-section_2 p { font-size: 16px; }
  .new-section_2 .new-span_bold { font-size: 19px; }
  .task-cards { gap: 30px; }
  .task-cards p { padding: 18px 2px 0; font-size: 21px; }
  main > .participation-panel { margin-top: 64px !important; padding: 28px; border-radius: 24px; }
  .participation-panel h2 { font-size: 30px; }
  main > .steps-panel { grid-template-columns: 1fr; gap: 24px; padding: 28px !important; border-radius: 24px !important; }
  .steps-panel > div + div { padding-top: 24px; border-top: 1px solid var(--line); }
  .steps-panel > div > span { margin-bottom: 12px; }
  .reviews-grid { margin-bottom: 64px; }
  .reviews-grid > .new-otziv { padding: 24px; }
  .reviews-grid .new-otziv img { aspect-ratio: 1; }
  .reviews-grid p:not(.new-name) { font-size: 16px; }
  .new-title { padding: 21px 22px; font-size: 17px; }
  .new-description { padding: 0 22px 23px; font-size: 16px; }
  .new-big-image_2 { min-height: 0; margin-top: 64px; padding: 36px 28px; border-radius: 26px; }
  .new-big-image_2::before { background: linear-gradient(90deg, #14263ff5, #14263fc9), url("13.jpg") center / cover no-repeat; }
  .new-big-image_2 h1 { font-size: 36px; }
  .new-big-image_2 h2 { margin: 20px 0 24px; font-size: 17px; }
  .new-big-image_2 .new-button { width: 100%; padding-inline: 12px; }
  body > footer { align-items: flex-start; flex-direction: column; gap: 8px; padding: 25px 70px 35px 0; }
  footer .site-operator { flex-basis: auto; margin-bottom: 14px; text-align: left; }
  body > button:has(.fab) { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 56px; height: 56px; }
  body > button .tg { width: 46px !important; height: 46px; }
  body #uc-heading-title { font-size: 22px; }
  body #uc-center-container [data-testid="uc-header"] { padding: 24px; }
  body #uc-center-container [data-testid="uc-footer"] { padding: 0 24px 24px; }
  body #uc-center-container [data-testid="uc-buttons-container"] { flex-direction: column; gap: 10px; }
  body #uc-center-container [data-testid="uc-buttons-container"] > button { width: 100%; flex-shrink: 0; }
  body:has(.block_more_info) { padding: 20px 16px; }
  .block_more_info { padding: 28px 22px; border-radius: 20px; }
  .block_more_info h2 { font-size: 23px; }
  .block_more_info h2:first-child { font-size: 29px; }
}
@media (max-width: 440px) {
  .new-section_2 { grid-template-columns: 1fr; }
  .new-section_2 > div:nth-child(odd) { background: #eef3fc; }
  .new-section_2 > div:nth-child(even) { background: #fff; }
  .new-section_2 > div { padding: 28px; }
  .new-big-image .new-button { width: 100%; }
  main > h2 { font-size: 30px; }
  .participation-panel h2 { font-size: 28px; }
  .new-big-image_2 h1 { font-size: 33px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
