/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color13 */
:root {
    --primary: #dc143c;
    --primary-hover: #e23a5e;
    --accent: #00ced1;
    --accent-hover: #1ad6d7;
    --accent-secondary: #33dede;
    --accent-transparent: rgba(0, 206, 209, 0.3);
    --background: #ffe4e1;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
.u_594349 *,

.u_ba6bdd * {

  box-sizing: border-box;

}

body.hb-love927-no-scroll { overflow: hidden !important; }



.u_594349 {

  width: 100%;

  box-shadow: var(--shadow);

  backdrop-filter: blur(8px) saturate(120%);

  position: relative;

  z-index: 100;

}

.u_133eb7 {

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  min-width: 0;

  gap: 16px;

  padding: calc(var(--page-gap) * 0.75) var(--page-gap);

  max-width: 1240px;

  margin: 0 auto;

}

.u_b68e56 img {

  display: block; height: 40px; width: 120px;

}

.u_7a11d5 {

  flex: 1 1 auto;

  display: flex; justify-content: center;

}

.u_64a3e8 {

  display: flex;

  gap: 32px;

  list-style: none;

  margin: 0; padding: 0;

  align-items: center;

  min-width: 0;

}

.u_64a3e8 li a {

  display: block;

  padding: 8px 15px;

  border-radius: var(--radius);

  font-weight: 600;

  color: var(--accent);

  font-size: 1.015rem;

  letter-spacing: 0.01em;

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(.3,.7,.4,1);

  position: relative;

}

.u_64a3e8 li a:hover, .u_64a3e8 li a:focus-visible {

  background: linear-gradient(96deg, var(--accent-transparent), var(--primary-hover));

  color: var(--primary);

  box-shadow: 0 2px 14px 0 var(--accent-transparent);

  text-underline-offset: 2px;

  text-decoration: underline;

  outline: none;

}

.u_3e3a39 {

  background: linear-gradient(100deg, var(--primary), var(--accent-secondary));

  color: var(--light);

  font-weight: 700; font-size: 1.07rem; padding: 10px 30px;

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 4px 24px var(--accent-transparent);

  border: none; text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(.3,.7,.4,1);

  cursor: pointer;

  min-width: max-content;

}

.u_3e3a39:hover, .u_3e3a39:focus-visible {

  background: linear-gradient(96deg, var(--primary-hover), var(--primary));

  color: var(--light); transform: scale(1.045);

  box-shadow: 0 6px 30px var(--primary-hover);

  outline: none;

}

.u_e837e6 {

  display: none;

  flex-direction: column; justify-content: center;

  gap: 6px;

  background: none; border: none;

  width: 40px; height: 40px;

  cursor: pointer; outline: none; z-index: 150;

  position: relative;

}

.u_e837e6 span {

  display: block; height: 3px; width: 26px;

  background: var(--primary); border-radius: 2px;

  transition: var(--transition);

}

.u_e837e6.active span:nth-child(1) {transform: translateY(7px) rotate(45deg);}

.u_e837e6.active span:nth-child(2) {opacity: 0;}

.u_e837e6.active span:nth-child(3) {transform: translateY(-7px) rotate(-45deg);}

@media (max-width: 768px) {

  .u_e837e6 { display: flex; }

  .u_64a3e8, .u_7a11d5, .u_3e3a39 {display: none !important;}

  .u_133eb7 {padding: calc(var(--page-gap)/1.4) var(--page-gap-reduced);}

}





.u_ba6bdd {

  display: none;

}

.u_ba6bdd.open {

  display: block;

  position: fixed;

  inset: 0;

  z-index: 3000;

}

.u_7e84b2 {

  position: fixed;

  inset: 0;

  z-index: 3000;

  background: rgba(10,0,50,0.25);

  backdrop-filter: blur(4px);

  transition: background 0.24s;

}

.u_b0a4bf {

  position: fixed;

  top: 0; left: 0; right: 0; bottom: 0;

  z-index: 3050;

  width: 100vw; height: 100dvh;

  background: var(--header);

  display: flex; flex-direction: column;

  align-items: center; justify-content: flex-start;

  padding-top: 70px;

  animation: popupMenuIn 0.27s cubic-bezier(.4,1.2,.5,1) 1;

}

@keyframes popupMenuIn {

  0% { transform: translateY(-32px); opacity: 0;}

  100% { transform: none; opacity: 1;}

}

.u_4de0c0 {

  list-style: none; margin: 0; padding: 0;

  width: 100%;

  display: flex; flex-direction: column;

  align-items: center; gap: 10px;

  flex: 1 1 auto;

}

.u_4de0c0 li a {

  display: block;

  width: 100vw;

  font-size: 1.14rem;

  text-align: center; font-weight: 600;

  color: var(--primary); background: none;

  text-decoration: none; padding: 18px 0;

  transition: background 0.2s, color 0.2s;

}

.u_4de0c0 li a:hover,

.u_4de0c0 li a:focus-visible {

  background: linear-gradient(90deg, var(--accent-transparent), var(--primary-hover));

  color: var(--accent);

  outline: none;

}

.u_ce489d {

  margin: 25px 0 0 0;

  background: linear-gradient(100deg, var(--primary), var(--accent-secondary));

  color: var(--light); text-align: center;

  font-size: 1.13rem; font-weight: 700;

  padding: 13px 52px; border-radius: calc(var(--radius)*2);

  box-shadow: 0 6px 24px var(--primary-hover);

  text-decoration: none;

  transition: var(--transition);

  min-width: max-content;

}

.u_ce489d:hover, .u_ce489d:focus-visible {

  background: var(--primary-hover); color: var(--light);

  box-shadow: 0 12px 36px var(--primary-hover);

  transform: scale(1.04); outline: none;

}

.u_21f3e3 {

  position: absolute; top: 16px; right: 20px;

  width: 36px; height: 36px; border: none;

  background: transparent; cursor: pointer;

  z-index: 99; display: flex; align-items: center; justify-content: center;

}

.u_21f3e3 span {

  position: absolute; width: 26px; height: 3.2px;

  background: var(--primary); border-radius: 3px;

  transition: background 0.2s;

}

.u_21f3e3 span:first-child { transform: rotate(45deg);}

.u_21f3e3 span:last-child { transform: rotate(-45deg);}

.u_21f3e3:hover span,

.u_21f3e3:focus-visible span {

  background: var(--accent);

}

@media (min-width:769px){

  .u_ba6bdd, .u_ba6bdd * { display: none !important; }

}

.u_bc0d32 {

  background: var(--accent-transparent);

  padding: calc(var(--section-gap) * 1.3) 0 calc(var(--section-gap) * 0.9);

  overflow: hidden;

  position: relative;

}



.u_791973 {

  display: flex;

  flex-wrap: wrap;

  gap: 56px;

  align-items: center;

  justify-content: space-between;

  max-width: 1240px;

  margin: 0 auto;

  padding: 0 var(--page-gap);

  min-width: 0;

  position: relative;

  z-index: 1;

}



.u_07ba9c {

  flex: 1 1 390px;

  min-width: 0;

  z-index: 2;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

}



.u_07ba9c h1 {

  font-size: 2.8rem;

  color: var(--accent);

  font-weight: 800;

  line-height: 1.14;

  margin: 0 0 2.3rem 0;

  letter-spacing: -0.015em;

  background-image: linear-gradient(92deg, var(--accent), var(--primary));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.u_542465 {

  background: var(--primary);

  color: var(--header);

  font-size: 1.18rem;

  font-weight: 700;

  padding: 15px 42px;

  border-radius: calc(var(--radius) * 2.4);

  box-shadow: 0 8px 28px var(--primary-hover);

  text-decoration: none;

  border: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(.3,.7,.4,1), transform 0.25s;

  letter-spacing: 0.01em;

  display: inline-block;

  cursor: pointer;

  outline: none;

}



.u_542465:hover,

.u_542465:focus-visible {

  background: var(--primary-hover);

  color: var(--header);

  transform: scale(1.07);

  box-shadow: 0 12px 38px var(--primary-hover);

  outline: none;

}



.u_0f600c {

  flex: 1 1 420px;

  max-width: 560px;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  z-index: 1;

}



.u_b22d53 {

  position: relative;

  width: 100%;

  max-width: 560px;

  aspect-ratio: 16/10;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: calc(var(--radius) * 3.5);

  overflow: hidden;

  box-shadow: 0 14px 46px var(--shadow);

  z-index: 1;

}



.u_b22d53 img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  pointer-events: none;

  transition: transform 0.8s cubic-bezier(.23,.52,.14,1);

}





.u_f62f36 {

  position: absolute;

  inset: 0;

  pointer-events: none;

  z-index: 3;

  background: linear-gradient(85deg, var(--primary-hover) 2%, transparent 65%, var(--accent-transparent) 98%), 

              linear-gradient(0deg, rgba(0,0,0,0.15), rgba(255,255,255,0.10)),

              rgba(0,0,0,0.09);

  mix-blend-mode: soft-light;

  opacity: 0.82;

  backdrop-filter: blur(2.7px) brightness(1.11);

  border-radius: inherit;

  transition: opacity .28s var(--transition);

}





@media (max-width: 1100px) {

  .u_791973 {

    gap: 32px;

  }

  .u_07ba9c { font-size: 95%; }

  .u_0f600c { max-width: 420px;}

  .u_b22d53 { max-width: 420px; }

}

@media (max-width: 900px) {

  .u_791973 {

    flex-direction: column-reverse;

    gap: 28px;

    align-items: stretch;

    padding: 0 var(--page-gap-reduced);

  }

  .u_0f600c,

  .u_07ba9c { max-width: 100%; flex-basis: 100%; }

  .u_542465 { width: 100%; text-align: center; }

}

@media (max-width: 600px) {

  .u_bc0d32 { padding: var(--section-gap) 0 12px; }

  .u_791973 { gap: 12px; }

  .u_07ba9c h1 { font-size: 2.1rem; margin-bottom: 1.2rem; }

  .u_542465 { font-size: 1rem; padding: 13px; }

  .u_b22d53 { aspect-ratio: 16/13; min-height: 150px; }

  .u_0f600c { min-width: 0; }

}

/* LINKS */
.u_1d8486 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-gap);
  box-sizing: border-box;
}

.u_2b5eba {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.u_95470b {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 24px;
}

.u_3095fa {
  margin: 0;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.u_655f96 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
}

.u_f3f2dc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.u_f3f2dc li {
  box-sizing: border-box;
  position: relative;
}

.u_f3f2dc li a {
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: radial-gradient(circle at 0 0, var(--accent) 0, var(--primary) 40%, transparent 70%);
  background-color: var(--primary);
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform-origin: center;
  transform: translateY(0) scale(1);
  transition:
    transform 180ms var(--transition),
    box-shadow 220ms var(--transition),
    background-color 180ms var(--transition),
    background-position 220ms var(--transition),
    color 180ms var(--transition),
    text-shadow 180ms var(--transition);
  max-width: 100%;
}

.u_f3f2dc li:nth-child(3n+1) a {
  background-image: radial-gradient(circle at 100% 0, var(--accent) 0, var(--primary) 40%, transparent 70%);
}

.u_f3f2dc li:nth-child(4n+2) a {
  background-image: radial-gradient(circle at 50% 100%, var(--primary) 0, var(--accent) 45%, transparent 75%);
}

.u_f3f2dc li:nth-child(5n+3) a {
  background-image: radial-gradient(circle at 0 100%, var(--accent) 0, var(--primary) 40%, transparent 72%);
}

.u_f3f2dc li a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--light) 0, var(--accent) 55%, transparent 100%);
  box-shadow: 0 0 10px var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

.u_f3f2dc li a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 200ms var(--transition),
    transform 200ms var(--transition);
  pointer-events: none;
}

.u_f3f2dc li a span {
  display: inline-block;
}

.u_f3f2dc li a:hover,
.u_f3f2dc li a:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  background-position: 20% 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  outline: none;
}

.u_f3f2dc li a:hover::after,
.u_f3f2dc li a:focus-visible::after {
  opacity: 1;
  transform: scale(1.02);
}

.u_f3f2dc li a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.u_f3f2dc li a:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.u_f3f2dc li {
  animation: links-block-orbit91-fadeSlide 520ms var(--transition) backwards;
}

.u_f3f2dc li:nth-child(1) { animation-delay: 40ms; }
.u_f3f2dc li:nth-child(2) { animation-delay: 80ms; }
.u_f3f2dc li:nth-child(3) { animation-delay: 120ms; }
.u_f3f2dc li:nth-child(4) { animation-delay: 160ms; }
.u_f3f2dc li:nth-child(5) { animation-delay: 200ms; }
.u_f3f2dc li:nth-child(6) { animation-delay: 240ms; }
.u_f3f2dc li:nth-child(7) { animation-delay: 280ms; }
.u_f3f2dc li:nth-child(8) { animation-delay: 320ms; }
.u_f3f2dc li:nth-child(9) { animation-delay: 360ms; }
.u_f3f2dc li:nth-child(10) { animation-delay: 400ms; }

@keyframes links-block-orbit91-fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .u_1d8486 {
    padding: calc(var(--section-gap) * 0.75);
  }

  .u_95470b {
    align-items: flex-start;
  }

  .u_3095fa {
    font-size: 1.7rem;
  }

  .u_655f96 {
    font-size: 0.9rem;
  }

  .u_f3f2dc {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }

  .u_f3f2dc li {
    width: 100%;
  }

  .u_f3f2dc li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 18px;
  }
}

@media (min-width: 769px) {
  .u_f3f2dc {
    justify-content: flex-start;
  }
}

/* FOOTER */
.u_619402 {
  background: var(--header);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08), var(--shadow);
  padding: calc(var(--section-gap) * 0.8) var(--page-gap);
  overflow-x: hidden;
}

.u_7a9b65 {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--page-gap);
}

.u_90f8f4 {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.u_6c5005 {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--accent);
  opacity: 0.9;
}

.u_bf2709 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.u_979c43 {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--primary);
  padding-bottom: 0.1rem;
  transition: color 180ms var(--transition), opacity 180ms var(--transition);
}

.u_979c43::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-hover);
  transition: width 180ms var(--transition), opacity 180ms var(--transition);
  opacity: 0;
}

.u_979c43:hover,
.u_979c43:focus-visible {
  color: var(--primary-hover);
  opacity: 1;
}

.u_979c43:hover::after,
.u_979c43:focus-visible::after {
  width: 100%;
  opacity: 1;
}

.u_979c43:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .u_619402 {
    padding: calc(var(--section-gap) * 0.7) var(--page-gap-reduced);
  }

  .u_7a9b65 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .u_619402 {
    padding: calc(var(--section-gap) * 0.6) var(--page-gap-reduced);
  }

  .u_7a9b65 {
    flex-direction: column;
    align-items: stretch;
    gap: calc(var(--page-gap-reduced) * 0.8);
  }

  .u_90f8f4 {
    align-items: flex-start;
  }

  .u_bf2709 {
    align-items: flex-start;
  }

  .u_979c43 {
    font-size: 0.95rem;
  }
}

@media (min-width: 1280px) {
  .u_7a9b65 {
    max-width: 1200px;
  }

  .u_6c5005 {
    font-size: 0.88rem;
  }

  .u_979c43 {
    font-size: 0.92rem;
  }
}

/* BODY */
.u_ed63d9 {

  box-sizing: border-box;

  width: 100%;

  min-height: 100vh;

  position: relative;

  overflow-x: hidden;

  background: var(--dark);

  display: flex;

  justify-content: center;

  align-items: center;

  padding: var(--section-gap) 0;

}



.u_6235fa {

  position: relative;

  width: 100%;

  max-width: 1024px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 1;

  box-sizing: border-box;

}



.u_a3beb1 {

  position: relative;

  width: 100%;

  max-width: 1024px;

  max-height: 640px;

  min-height: 320px;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  border-radius: var(--radius);

  box-shadow: 0 0 40px 2px var(--primary), 0 2px 24px var(--shadow);

  margin-bottom: -16vh;

  z-index: 0;

}



.u_a3beb1 > *:first-child {

  display: block;

  width: 100%;

  height: auto;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius);

}



.u_ceec11 {

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, rgba(10,0,93,0.50) 0%, rgba(149,24,48, 0.35) 50%, rgba(0,0,0, 0.85) 100%);

  pointer-events: none;

  z-index: 1;

  box-shadow: 0 0 80px 32px var(--accent-transparent) inset;

  backdrop-filter: blur(0.5px);

  border-radius: var(--radius);

}



.u_2193ab {

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  margin-top: -20vh;

  padding: 3.5vw 8vw 4vw 8vw;

  min-width: 0;

  max-width: 90%;

  background: rgba(25,7,50,0.75);

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 0 32px 0 var(--primary-hover), 0 2px 24px var(--shadow);

  backdrop-filter: blur(0.5px);

}



.u_92db95 {

  color: var(--light);

  text-align: center;

  font-size: 1.24rem;

  font-weight: 400;

  letter-spacing: 0.01em;

  margin-bottom: 1.9rem;

  line-height: 1.7;

  width: 100%;

  

}

.u_92db95 h2,

.u_92db95 h3 {

  color: var(--light);

  font-weight: 700;

  margin: 0 0 0.6em;

  letter-spacing: 0.02em;

  text-shadow: 0 0 8px var(--primary), 0 2px 10px var(--accent-transparent);

}

.u_92db95 h2 {

  font-size: 2.2rem;

  line-height: 1.2;

}

.u_92db95 h3 {

  font-size: 1.4rem;

  line-height: 1.3;

}

.u_92db95 p {

  margin: 0 0 1em 0;

  color: var(--light);

  opacity: 0.92;

  font-size: 1.08rem;

}

.u_92db95 ul,

.u_92db95 ol {

  margin: 1em auto 1.5em 2em;

  padding-left: 1.4em;

  color: var(--light);

  font-size: 1.08rem;

}

.u_92db95 li {

  margin-bottom: 0.45em;

  position: relative;

}

.u_92db95 ul li::before {

  content: "";

  display: inline-block;

  vertical-align: middle;

  width: 0.55em;

  height: 0.55em;

  margin-right: 0.6em;

  border-radius: 50%;

  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 100%);

  box-shadow: 0 0 8px 2px var(--primary);

}

.u_92db95 ol {

  list-style-type: decimal;

}

.u_92db95 b, 

.u_92db95 strong {

  color: var(--accent);

  font-weight: 600;

  text-shadow: 0 0 6px var(--primary-hover);

}

.u_92db95 i,

.u_92db95 em {

  color: var(--accent-secondary, var(--accent));

}

.u_92db95 a {

  color: var(--accent-secondary, var(--accent));

  transition: color 0.2s;

  text-decoration: underline;

  text-underline-offset: 2px;

  font-weight: 500;

}

.u_92db95 a:hover {

  color: var(--primary-hover);

  text-shadow: 0 0 8px var(--accent);

}

.u_92db95 table {

  width: 100%;

  overflow-x: auto;

  border-collapse: separate;

  border-spacing: 0;

  background: rgba(0,0,0,0.26);

  border-radius: var(--radius);

  margin: 1.1em 0;

  box-shadow: 0 2px 12px 0 var(--shadow);

}

.u_92db95 th,

.u_92db95 td {

  padding: 0.6em 1em;

  border: 1px solid var(--accent-transparent);

  color: var(--light);

  text-align: center;

  font-size: 1rem;

}

.u_92db95 th {

  font-weight: 700;

  background: var(--accent-transparent);

  color: var(--light);

}

.u_92db95 tr:nth-child(even) td {

  background: rgba(171,161,251,0.09);

}





.u_a0f3a7.u_ccb35a {

  display: inline-block;

  font-weight: 700;

  font-size: 1.10rem;

  padding: 14px 38px;

  margin-top: 0.7rem;

  color: var(--light);

  background: radial-gradient(circle at 50% 45%, var(--primary) 0%, var(--accent) 90%);

  border: none;

  border-radius: 32px;

  box-shadow:

    0 2px 24px 0 var(--accent),

    0 0 16px 2px var(--primary-hover),

    0 0 32px 4px var(--accent-transparent);

  cursor: pointer;

  transition: 

    background 0.27s var(--transition),

    box-shadow 0.30s cubic-bezier(.24,0,.12,1),

    transform 0.21s cubic-bezier(.40,.25,.27,1);

  outline: none;

  text-shadow: 0 0 12px var(--primary-hover);

  letter-spacing: 0.07em;

  position: relative;

}



.u_a0f3a7.u_ccb35a:hover,

.u_a0f3a7.u_ccb35a:focus {

  background: radial-gradient(circle at 60% 40%, var(--primary-hover) 10%, var(--accent) 90%);

  box-shadow:

    0 4px 36px 0 var(--primary-hover),

    0 0 28px 6px var(--accent-hover),

    0 0 40px 10px var(--accent-transparent);

  transform: translateY(-3px) scale(1.028);

  filter: brightness(1.07);

  outline: none;

}



.u_a0f3a7.u_ccb35a:active {

  transform: scale(0.98);

  filter: brightness(0.97);

}





@media (max-width: 1024px) {

  .u_ed63d9 {

    min-height: 80vh;

    padding: var(--page-gap);

  }

  .u_a3beb1 {

    max-height: 340px;

    margin-bottom: -70px;

  }

  .u_2193ab {

    margin-top: -8vh;

    padding: 6vw 4vw 7vw 4vw;

    max-width: 98%;

  }

}

@media (max-width: 768px) {

  .u_ed63d9 {

    padding: var(--page-gap-reduced);

    min-height: 60vh;

  }

  .u_6235fa {

    max-width: 98vw;

    padding: 0;

  }

  .u_a3beb1 {

    max-width: 98vw;

    max-height: 180px;

    min-height: 120px;

    margin-bottom: -28vw;

  }

  .u_2193ab {

    margin-top: -13vw;

    padding: 7vw 4vw 7vw 4vw;

    font-size: 0.99rem;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius);

  }

  .u_92db95 {

    font-size: 1rem;

  }

  .u_a0f3a7.u_ccb35a {

    font-size: 1rem;

    padding: 12px 26px;

  }

}

@media (max-width: 480px) {

  .u_ed63d9 {

    padding: var(--page-gap-reduced) 0;

  }

  .u_a3beb1 {

    max-width: 100vw;

    max-height: 110px;

    min-height: 60px;

    margin-bottom: -17vw;

  }

  .u_2193ab {

    margin-top: -14vw;

    padding: 12vw 4vw 12vw 4vw;

    border-radius: var(--radius);

  }

  .u_92db95 {

    font-size: 0.93rem;

    padding: 0;

  }

}

/* BODY1 */
.u_33dbfc.u_938146 {

  background: var(--light);

  box-sizing: border-box;

  border: 1.5px solid var(--accent-transparent, rgba(171,161,251,0.2));

  border-radius: 24px;

  box-shadow: 0 2px 16px 0 rgba(10,0,93,0.06), 0 1px 4px 0 var(--shadow);

  padding: 0;

  margin: var(--section-gap) auto;

  max-width: 800px;

  overflow: hidden;

  min-width: 0;

  transition: box-shadow 0.3s, border 0.25s;

  position: relative;

}

.u_33dbfc.u_938146:before {

  content: "";

  display: block;

  position: absolute;

  inset: 0;

  pointer-events: none;

  border-radius: 24px;

  box-shadow: 0 2px 22px 0 rgba(10,0,93,0.08) inset;

  z-index: 0;

  backdrop-filter: blur(0.5px);

}



.u_9c617a {

  position: relative;

  z-index: 1;

  padding: 42px 48px 36px 48px;

  box-sizing: border-box;

  max-width: 100%;

}



.u_e27d30.u_d44c32 {

  font-family: inherit;

  font-size: 1.09rem;

  color: var(--dark);

  line-height: 1.62;

  letter-spacing: 0.01em;

}



.u_e27d30.u_d44c32 h2,

.u_e27d30.u_d44c32 h3 {

  margin: 0 0 18px 0;

  font-size: 2rem;

  font-weight: 700;

  color: var(--accent);

  line-height: 1.25;

  letter-spacing: -0.015em;

}

.u_e27d30.u_d44c32 h3 {

  font-size: 1.2rem;

  color: var(--dark-default);

}



.u_e27d30.u_d44c32 p {

  margin: 0 0 16px 0;

  color: var(--dark-default);

  font-size: 1.09rem;

}



.u_e27d30.u_d44c32 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.u_e27d30.u_d44c32 a:hover,

.u_e27d30.u_d44c32 a:focus {

  color: var(--primary-hover);

  text-decoration: underline wavy;

}



.u_e27d30.u_d44c32 ul, 

.u_e27d30.u_d44c32 ol {

  margin: 0 0 18px 1.3em;

  padding: 0;

  font-size: 1.02rem;

}

.u_e27d30.u_d44c32 ul li,

.u_e27d30.u_d44c32 ol li {

  margin: 0 0 8px 0;

  padding-left: 0.8em;

  line-height: 1.6;

}

.u_e27d30.u_d44c32 ul li {

  list-style: disc inside;

}

.u_e27d30.u_d44c32 ol li {

  list-style: decimal inside;

}



.u_e27d30.u_d44c32 table {

  margin-top: 0.9em;

  margin-bottom: 0.9em;

  width: 100%;

  border-collapse: separate;

  border-spacing: 0;

  font-family: 'JetBrains Mono', 'Fira Mono', 'Menlo', 'Consolas', monospace;

  font-size: 1.06rem;

  background: rgba(171,161,251,0.07);

  border-radius: 12px;

  box-shadow: 0 1px 3px 0 rgba(151,24,48,0.03) inset;

  overflow-x: auto;

}

.u_e27d30.u_d44c32 th, 

.u_e27d30.u_d44c32 td {

  padding: 10px 16px;

  border-bottom: 1.5px solid var(--accent-transparent, #ABA1FB44);

  text-align: left;

  vertical-align: middle;

  font-size: 1.06rem;

}

.u_e27d30.u_d44c32 th {

  color: var(--primary);

  background: var(--light);

  font-weight: 600;

  letter-spacing: 0.04em;

}

.u_e27d30.u_d44c32 tr:last-child td {

  border-bottom: none;

}

.u_e27d30.u_d44c32 td {

  color: var(--dark);

  background: transparent;

}

.u_e27d30.u_d44c32 table {

  border-radius: 12px;

  overflow: hidden;

}

.u_e27d30.u_d44c32 table,

.u_e27d30.u_d44c32 thead,

.u_e27d30.u_d44c32 tbody {

  display: block;

  width: 100%;

}

.u_e27d30.u_d44c32 tr {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

  width: 100%;

}

.u_e27d30.u_d44c32 th,

.u_e27d30.u_d44c32 td {

  display: block;

  width: 100%;

  box-sizing: border-box;

  min-width: 0;

  word-break: break-word;

}





@media (max-width: 550px) {

  .u_9c617a {

    padding: 24px 8vw 20px 8vw;

  }

  .u_e27d30.u_d44c32 table,

  .u_e27d30.u_d44c32 thead,

  .u_e27d30.u_d44c32 tbody,

  .u_e27d30.u_d44c32 tr {

    display: block;

    width: 100%;

  }

  .u_e27d30.u_d44c32 th,

  .u_e27d30.u_d44c32 td {

    display: block;

    width: 100%;

    font-size: 0.99rem;

    padding: 8px 10px;

  }

}

@media (max-width: 768px) {

  .u_33dbfc.u_938146 {

    margin: var(--page-gap-reduced) auto;

    border-radius: 18px;

    box-shadow: 0 1px 8px 0 rgba(10,0,93,0.08);

    padding: 0;

  }

  .u_9c617a {

    padding: 24px 5vw 18px 5vw;

  }

  .u_e27d30.u_d44c32 h2 {

    font-size: 1.3rem;

    margin-bottom: 14px;

  }

}

@media (max-width: 420px) {

  .u_33dbfc.u_938146 {

    border-radius: 12px;

  }

  .u_9c617a {

    padding: 12px 2vw 10px 2vw;

  }

}





.u_33dbfc.u_938146,

.u_9c617a,

.u_e27d30.u_d44c32 {

  box-sizing: border-box;

  max-width: 100%;

  min-width: 0;

}

body, .u_33dbfc.u_938146 {

  overflow-x: hidden;

}

/* BODY2 */
.u_eb29c9 {

  box-sizing: border-box;

  background: var(--light);

  border: 1.5px solid var(--accent);

  box-shadow: 0 10px 36px 0 var(--shadow), 0 1.5px 4px 0 var(--accent-transparent);

  border-radius: var(--radius);

  padding: 0;

  overflow-x: hidden;

  width: 100%;

  margin: 0 auto var(--section-gap) auto;

  max-width: 1240px;

  transition: var(--transition);

}



.u_360c60 {

  display: flex;

  align-items: stretch;

  min-width: 0;

  width: 100%;

  gap: 0;

  background: var(--light);

  border-radius: var(--radius);

  overflow: hidden;

}



.u_741507 {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

  background: linear-gradient(120deg, var(--accent-transparent) 40%, transparent 100%);

  padding: 0 0 var(--section-gap) 0;

  min-width: 0;

  width: 56%;

  box-sizing: border-box;

  position: relative;

  z-index: 2;

  border-right: 1px solid var(--accent-secondary);

}



.u_741507 img {

  max-width: 96%;

  height: auto;

  display: block;

  border-radius: calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) calc(var(--radius) * 0.8) calc(var(--radius) * 0.8);

  box-shadow: 0 4px 28px var(--shadow), 0 0.5px 2px var(--accent-transparent);

  margin: var(--page-gap) auto 28px auto;

  backdrop-filter: blur(0.5px);

  background: var(--light);

  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), box-shadow var(--transition);

}



.u_166d35 {

  display: flex;

  align-items: center;

  flex: 1 1 0;

  justify-content: center;

  min-width: 0;

  background: transparent;

  padding: var(--section-gap) calc(var(--section-gap) + 10px);

}



.u_166d35 .u_4d4c48 {

  width: 100%;

  max-width: 410px;

  color: var(--dark);

  font-size: 1.125rem;

  font-family: inherit;

  line-height: 1.5;

  letter-spacing: 0;

  word-break: break-word;

  min-width: 0;

}



.u_166d35 h2,

.u_166d35 h3 {

  color: var(--accent);

  font-weight: 800;

  margin: 0 0 14px 0;

  letter-spacing: -0.5px;

}



.u_166d35 p {

  color: var(--dark-default);

  margin-bottom: 16px;

}



.u_166d35 ul,

.u_166d35 ol {

  padding-left: 1.25em;

  margin-bottom: 16px;

}



.u_166d35 ul li {

  list-style: disc inside;

  margin-bottom: 6px;

  color: var(--dark);

}



.u_166d35 ol li {

  list-style: decimal inside;

  margin-bottom: 6px;

  color: var(--dark);

}



.u_166d35 b,

.u_166d35 strong {

  color: var(--primary);

  font-weight: 700;

}



.u_166d35 i,

.u_166d35 em {

  color: var(--accent);

}



.u_166d35 a {

  color: var(--primary);

  text-decoration: underline;

  transition: var(--transition);

  font-weight: 600;

}

.u_166d35 a:hover {

  color: var(--accent-hover);

}



.u_166d35 table {

  width: 100%;

  border-collapse: collapse;

  margin: 18px 0;

  font-size: 0.97em;

  overflow-x: auto;

  display: block;

  background: var(--background);

  border: 1px solid var(--accent-secondary);

  border-radius: calc(var(--radius) * 0.8);

}

.u_166d35 thead {

  background: var(--accent-secondary);

}

.u_166d35 th,

.u_166d35 td {

  border: 1px solid var(--accent-transparent);

  padding: 6px 9px;

  text-align: left;

  color: var(--dark);

}



.u_08bbb7 {

  display: block;

  margin: 32px auto 0 auto;

  padding: 16px 42px;

  background: var(--primary);

  color: var(--light);

  font-weight: 700;

  font-size: 1.18rem;

  border-radius: calc(var(--radius) * 2);

  box-shadow: 0 5px 20px var(--shadow), 0 1px 4px var(--accent-transparent);

  text-decoration: none;

  border: none;

  letter-spacing: 0.02em;

  cursor: pointer;

  transition: background 0.22s cubic-bezier(.4,.8,.6,1.4), transform 0.18s cubic-bezier(.25,1,.68,1.53), box-shadow 0.16s;

  outline: none;

  will-change: background, transform, box-shadow;

  min-width: 170px;

  max-width: 360px;

  text-align: center;

}



.u_08bbb7:hover,

.u_08bbb7:focus {

  background: var(--primary-hover);

  box-shadow: 0 10px 34px var(--shadow), 0 3px 8px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

}



@media (max-width: 1090px) {

  .u_360c60 {

    flex-direction: column;

  }

  .u_741507, .u_166d35 {

    width: 100%;

    min-width: 0;

    border-right: none;

    border-bottom: 1px solid var(--accent-secondary);

  }

  .u_741507 {

    border-bottom: none;

    padding-bottom: 0;

  }

  .u_08bbb7 {

    margin: 22px auto 20px auto;

  }

  .u_166d35 {

    padding: var(--section-gap) var(--page-gap);

  }

}



@media (max-width: 768px) {

  .u_eb29c9, .u_360c60 {

    max-width: 100%;

    border-radius: 0;

    box-sizing: border-box;

  }

  .u_360c60 {

    flex-direction: column;

    padding: 0;

    gap: 0;

  }

  .u_741507 {

    padding: var(--page-gap) 0 8px 0;

    border-radius: 0;

    min-width: 0;

    width: 100%;

    box-shadow: none;

  }

  .u_166d35 {

    padding: var(--page-gap) var(--page-gap-reduced);

    max-width: 100%;

  }

  .u_166d35 .u_4d4c48 {

    font-size: 1rem;

    max-width: 100%;

    min-width: 0;

  }

}