/* 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: color26 */
:root {
    --primary: #9932cc;
    --primary-hover: #a64bd3;
    --accent: #00fa9a;
    --accent-hover: #1affaa;
    --accent-secondary: #33ffbb;
    --accent-transparent: rgba(0, 250, 154, 0.3);
    --background: #fff0f5;
    --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 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;

}

.u_a03772 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-color: var(--header);
  box-shadow: var(--shadow);
}

.u_92e412 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.u_969d70 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  min-width: 0;
}

.u_969d70 img {
  display: block;
  height: auto;
  max-width: 120px;
}

.u_4973e4 {
  flex: 0 0 auto;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  transition: var(--transition);
  border: 1px solid transparent;
}

.u_bf8d78 {
  background-color: transparent;
  color: var(--accent);
  border-color: rgba(0, 0, 0, 0.08);
}

.u_bf8d78:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.u_446524 {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.u_446524:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.u_31ee5a {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--light);
  background-color: #05040a;
}

.u_778f26 {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.u_6f5109 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

.u_d1f320 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(0, 0, 0, 0.7), transparent 60%),
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(5, 0, 50, 0.8));
  mix-blend-mode: multiply;
}

.u_2fdaa5 {
  position: absolute;
  width: 460px;
  height: 460px;
  right: 4%;
  top: 14%;
  opacity: 0.9;
  pointer-events: none;
}

.u_60ebbc {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.4;
  stroke-dasharray: 4 6;
}

.u_eec529 {
  fill: var(--accent);
}

.u_06382f {
  animation: orbitFloat1 9s ease-in-out infinite;
}

.u_80d922 {
  animation: orbitFloat2 11s ease-in-out infinite;
}

.u_b9c1a1 {
  animation: orbitFloat3 10s ease-in-out infinite;
}

.u_79f61a {
  animation: orbitFloat4 12s ease-in-out infinite;
}

.u_53ce18 {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px var(--page-gap) 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 0;
}

.u_d818c6 {
  flex: 1 1 52%;
  min-width: 0;
  max-width: 620px;
}

.u_7b10c1 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--light);
}

.u_4c428b {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

.u_b2a894 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.u_65012e {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.u_2c2e51 {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.u_2c2e51:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.6);
}

.u_71cbd4 {
  background: transparent;
  color: var(--accent-secondary);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
}

.u_71cbd4:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.u_4c83c2 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.u_c52352 {
  flex: 1 1 40%;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

.u_0d9456 {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  border-radius: 32px;
  padding: 18px;
  backdrop-filter: blur(20px);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.24), rgba(10, 0, 80, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.u_91a2f6 {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: heroPulse 9s ease-in-out infinite;
}

.u_b579f1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.85));
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.u_c87ce1 {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent), var(--primary-hover));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  animation: floatAvatar 7s ease-in-out infinite;
}

.u_03030c {
  margin-top: 18px;
  max-width: 100%;
}

.u_03030c .u_4301e8 {
  display: block;
  height: 6px;
  border-radius: 999px;
  margin-bottom: 7px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}

.u_03030c .u_4301e8::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}

.u_03030c .u_aac4b4 {
  width: 84%;
}

.u_03030c .u_fc54f3 {
  width: 64%;
  animation-delay: 0.15s;
}

.u_03030c .u_d1a2e6 {
  width: 48%;
  animation-delay: 0.3s;
}

.u_3137c7 {
  margin-top: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.u_3137c7::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #32ff9a;
  box-shadow: 0 0 10px rgba(50, 255, 154, 0.9);
  animation: statusPulse 1.4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(0, -6px, 0) scale(1.03);
    opacity: 1;
  }
}

@keyframes floatAvatar {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(50, 255, 154, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(50, 255, 154, 1);
  }
}

@keyframes orbitFloat1 {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(4px, -6px, 0);
  }
}

@keyframes orbitFloat2 {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-5px, 5px, 0);
  }
}

@keyframes orbitFloat3 {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-6px, -4px, 0);
  }
}

@keyframes orbitFloat4 {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(5px, -5px, 0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .u_2fdaa5 {
    width: 340px;
    height: 340px;
    right: -8%;
    top: 10%;
    opacity: 0.75;
  }

  .u_53ce18 {
    padding: 80px var(--page-gap) 32px;
    gap: 32px;
  }

  .u_7b10c1 {
    font-size: 36px;
  }

  .u_0d9456 {
    max-width: 280px;
  }

  .u_92e412 {
    padding-inline: var(--page-gap-reduced);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .u_92e412 {
    gap: 8px;
  }

  .u_969d70 img {
    max-width: 100px;
  }

  .u_4973e4 {
    padding: 7px 12px;
    font-size: 12px;
  }

  .u_31ee5a {
    padding-top: 60px;
    align-items: flex-start;
  }

  .u_778f26 {
    position: absolute;
  }

  .u_2fdaa5 {
    width: 260px;
    height: 260px;
    right: -18%;
    top: 12%;
    opacity: 0.55;
  }

  .u_53ce18 {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px var(--page-gap) 28px;
    gap: 28px;
  }

  .u_d818c6 {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .u_7b10c1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .u_4c428b {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .u_b2a894 {
    gap: 10px;
  }

  .u_65012e {
    width: auto;
    min-width: 0;
    padding-inline: 18px;
  }

  .u_c52352 {
    width: 100%;
    justify-content: center;
  }

  .u_0d9456 {
    max-width: 260px;
    padding: 14px;
    border-radius: 26px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .u_92e412 {
    padding-inline: 10px;
  }

  .u_bf8d78 {
    display: none;
  }

  .u_53ce18 {
    padding-inline: 16px;
  }

  .u_7b10c1 {
    font-size: 26px;
  }

  .u_b2a894 {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .u_65012e {
    flex: 0 0 auto;
  }
}

/* LINKS */
.u_3acad4 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-gap);
  box-sizing: border-box;
}

.u_b6eccd {
  position: relative;
  box-sizing: border-box;
  color: var(--light);
}

.u_bfd8d7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 24px;
  box-sizing: border-box;
}

.u_1b58f1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.u_026e66 {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.8;
}

.u_0694fa {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.u_0694fa li {
  box-sizing: border-box;
}

.u_0694fa a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: radial-gradient(circle at top left, var(--accent) 0%, var(--primary) 40%, var(--dark) 100%);
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
  transform-origin: center;
  transform: translateY(0) scale(1);
  transition:
    background var(--transition),
    color var(--transition),
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    opacity 220ms ease-out;
  box-sizing: border-box;
  will-change: transform, box-shadow, opacity;
}

.u_0694fa a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--light);
  opacity: 0.8;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.18),
    0 0 12px rgba(255, 255, 255, 0.7);
  transform: scale(0.8);
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, opacity 200ms ease-out;
}

.u_0694fa a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.0;
  pointer-events: none;
  transition: opacity 220ms ease-out, transform 220ms ease-out;
  transform: scale(0.96);
}

.u_0694fa a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.u_0694fa a:hover::before {
  transform: scale(1);
  opacity: 1;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.28),
    0 0 16px rgba(255, 255, 255, 0.9);
}

.u_0694fa a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.u_0694fa a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.u_0694fa li:nth-child(3n) a {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.u_0694fa li:nth-child(4n) a {
  background: linear-gradient(135deg, var(--dark), var(--primary));
}

.u_0694fa li:nth-child(5n) a {
  background: linear-gradient(135deg, var(--accent), var(--dark));
}

.u_0694fa li:nth-child(odd) a {
  animation: links-block-aurora92-fadeSlide 1200ms ease-out both;
}

.u_0694fa li:nth-child(even) a {
  animation: links-block-aurora92-fadeScale 1200ms ease-out both;
}

.u_0694fa li:nth-child(1) a { animation-delay: 40ms; }
.u_0694fa li:nth-child(2) a { animation-delay: 80ms; }
.u_0694fa li:nth-child(3) a { animation-delay: 120ms; }
.u_0694fa li:nth-child(4) a { animation-delay: 160ms; }
.u_0694fa li:nth-child(5) a { animation-delay: 200ms; }
.u_0694fa li:nth-child(6) a { animation-delay: 240ms; }
.u_0694fa li:nth-child(7) a { animation-delay: 280ms; }
.u_0694fa li:nth-child(8) a { animation-delay: 320ms; }
.u_0694fa li:nth-child(9) a { animation-delay: 360ms; }
.u_0694fa li:nth-child(10) a { animation-delay: 400ms; }
.u_0694fa li:nth-child(11) a { animation-delay: 440ms; }
.u_0694fa li:nth-child(12) a { animation-delay: 480ms; }
.u_0694fa li:nth-child(13) a { animation-delay: 520ms; }
.u_0694fa li:nth-child(14) a { animation-delay: 560ms; }
.u_0694fa li:nth-child(15) a { animation-delay: 600ms; }
.u_0694fa li:nth-child(16) a { animation-delay: 640ms; }
.u_0694fa li:nth-child(17) a { animation-delay: 680ms; }
.u_0694fa li:nth-child(18) a { animation-delay: 720ms; }
.u_0694fa li:nth-child(19) a { animation-delay: 760ms; }
.u_0694fa li:nth-child(20) a { animation-delay: 800ms; }

@keyframes links-block-aurora92-fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes links-block-aurora92-fadeScale {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(-1px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .u_3acad4 {
    padding: calc(var(--section-gap) * 0.75);
  }

  .u_bfd8d7 {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .u_1b58f1 {
    font-size: 1.4rem;
  }

  .u_026e66 {
    font-size: 0.9rem;
  }

  .u_0694fa {
    gap: 10px;
  }

  .u_0694fa li {
    width: 100%;
  }

  .u_0694fa a {
    width: 100%;
    display: block;
    text-align: center;
    white-space: normal;
    padding: 12px 16px;
    margin: 2px 0;
  }
}

/* FOOTER */
.u_bb384b {
  background: var(--header);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.28);
  padding: calc(var(--section-gap) * 0.9) var(--page-gap);
  overflow-x: hidden;
}

.u_ba277e {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: calc(var(--page-gap) * 1.2);
  row-gap: calc(var(--page-gap) * 0.75);
}

.u_e36ef7 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.u_113bbd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--page-gap) * 0.9);
  flex-wrap: wrap;
}

.u_5401be {
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  padding-bottom: 2px;
  transition: color var(--transition), text-shadow var(--transition), opacity var(--transition);
}

.u_5401be::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  transition: width var(--transition);
}

.u_5401be:hover {
  color: var(--primary-hover);
  text-shadow: 0 0 12px var(--shadow);
  opacity: 0.95;
}

.u_5401be:hover::after {
  width: 100%;
}

.u_f890b9 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: calc(var(--page-gap) * 0.6);
  flex-wrap: wrap;
}

.u_24f01b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  background: transparent;
  color: var(--accent);
  transition: color var(--transition), background-color var(--transition), box-shadow var(--transition), transform var(--transition), opacity var(--transition);
}

.u_93195c {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  transition: fill var(--transition), transform var(--transition), filter var(--transition), opacity var(--transition);
}

.u_a58b60 {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.u_24f01b:hover {
  color: var(--primary-hover);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 16px var(--shadow);
  transform: translateY(-1px) scale(1.02);
  opacity: 0.98;
}

.u_24f01b:hover .u_93195c {
  fill: var(--primary);
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px var(--shadow));
  opacity: 0.98;
}

.u_f24197 {
  max-width: 1180px;
  margin: calc(var(--page-gap) * 0.8) auto 0 auto;
  padding-top: calc(var(--page-gap) * 0.6);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.u_81fb3c {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary);
  opacity: 0.9;
}

/* Tablet */
@media (max-width: 960px) {
  .u_ba277e {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }

  .u_e36ef7 {
    justify-content: center;
  }

  .u_f890b9 {
    justify-content: center;
  }

  .u_113bbd {
    order: 3;
  }

  .u_f24197 {
    margin-top: calc(var(--page-gap) * 0.9);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .u_bb384b {
    padding: calc(var(--section-gap) * 0.8) var(--page-gap-reduced);
  }

  .u_ba277e {
    row-gap: calc(var(--page-gap-reduced) * 0.9);
  }

  .u_113bbd {
    gap: calc(var(--page-gap-reduced) * 0.8);
  }

  .u_5401be {
    font-size: 0.85rem;
  }

  .u_f890b9 {
    gap: calc(var(--page-gap-reduced) * 0.7);
  }

  .u_24f01b {
    padding: 6px 10px;
  }

  .u_a58b60 {
    font-size: 0.75rem;
  }

  .u_f24197 {
    padding-top: calc(var(--page-gap-reduced) * 0.7);
  }

  .u_81fb3c {
    font-size: 0.78rem;
  }
}

/* BODY */
.u_d48a1e {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--background);
  overflow-x: hidden;
}

.u_d48a1e * {
  box-sizing: border-box;
}

.u_b1acfe {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: calc(var(--page-gap) * 1.4);
  align-items: center;
  background: linear-gradient(135deg, var(--light) 0%, #f7f5ff 40%, var(--light) 100%);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow);
  padding: calc(var(--page-gap) * 1.4);
  position: relative;
  overflow: hidden;
}

.u_b1acfe::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, var(--accent-transparent) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.35) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.u_cecf4f {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.u_cecf4f::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--accent-transparent);
  border-radius: calc(var(--radius) * 3);
  filter: blur(0.5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.u_cecf4f img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 3);
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: translateY(0);
  transition: var(--transition);
  position: relative;
}

.u_d48a1e:hover .u_cecf4f img {
  transform: translateY(-4px) scale(1.01);
}

.u_9d6004 {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: var(--dark-default);
  display: flex;
  align-items: center;
}

.u_9d6004 .u_5b0247 {
  width: 100%;
}

.u_9d6004 .u_5b0247 h2,
.u_9d6004 .u_5b0247 h3 {
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.u_9d6004 .u_5b0247 h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.u_9d6004 .u_5b0247 h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.u_9d6004 .u_5b0247 p {
  margin: 0 0 12px;
  color: var(--dark-default);
  line-height: 1.6;
}

.u_9d6004 .u_5b0247 ul,
.u_9d6004 .u_5b0247 ol {
  margin: 0 0 16px 1.2em;
  padding: 0;
  color: var(--dark-default);
}

.u_9d6004 .u_5b0247 li {
  margin-bottom: 6px;
  padding-left: 0.25em;
}

.u_9d6004 .u_5b0247 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 0, 93, 0.2);
  transition: var(--transition);
}

.u_9d6004 .u_5b0247 a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-hover);
}

.u_9d6004 .u_5b0247 table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.95rem;
}

.u_9d6004 .u_5b0247 thead {
  background: rgba(10, 0, 93, 0.05);
}

.u_9d6004 .u_5b0247 th,
.u_9d6004 .u_5b0247 td {
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.u_9d6004 .text-content-wrapper-table {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 991px) {
  .u_b1acfe {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--page-gap);
    gap: var(--page-gap);
  }

  .u_cecf4f {
    order: 1;
  }

  .u_9d6004 {
    order: 2;
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .u_d48a1e {
    padding: var(--page-gap-reduced);
  }

  .u_b1acfe {
    padding: var(--page-gap-reduced);
    border-radius: calc(var(--radius) * 1.5);
  }

  .u_cecf4f::before {
    inset: 10%;
  }

  .u_9d6004 {
    align-items: flex-start;
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .u_b1acfe {
    gap: var(--page-gap-reduced);
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.25rem;
  }

  .u_9d6004 .u_5b0247 p {
    font-size: 0.95rem;
  }
}

/* BODY1 */
.u_d48a1e {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--background);
  overflow-x: hidden;
}

.u_d48a1e * {
  box-sizing: border-box;
}

.u_b1acfe {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: calc(var(--page-gap) * 1.4);
  align-items: center;
  background: linear-gradient(135deg, var(--light) 0%, #f7f5ff 40%, var(--light) 100%);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow);
  padding: calc(var(--page-gap) * 1.4);
  position: relative;
  overflow: hidden;
}

.u_b1acfe::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, var(--accent-transparent) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.35) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.u_cecf4f {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.u_cecf4f::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--accent-transparent);
  border-radius: calc(var(--radius) * 3);
  filter: blur(0.5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.u_cecf4f img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 3);
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: translateY(0);
  transition: var(--transition);
  position: relative;
}

.u_d48a1e:hover .u_cecf4f img {
  transform: translateY(-4px) scale(1.01);
}

.u_9d6004 {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: var(--dark-default);
  display: flex;
  align-items: center;
}

.u_9d6004 .u_5b0247 {
  width: 100%;
}

.u_9d6004 .u_5b0247 h2,
.u_9d6004 .u_5b0247 h3 {
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.u_9d6004 .u_5b0247 h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.u_9d6004 .u_5b0247 h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.u_9d6004 .u_5b0247 p {
  margin: 0 0 12px;
  color: var(--dark-default);
  line-height: 1.6;
}

.u_9d6004 .u_5b0247 ul,
.u_9d6004 .u_5b0247 ol {
  margin: 0 0 16px 1.2em;
  padding: 0;
  color: var(--dark-default);
}

.u_9d6004 .u_5b0247 li {
  margin-bottom: 6px;
  padding-left: 0.25em;
}

.u_9d6004 .u_5b0247 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 0, 93, 0.2);
  transition: var(--transition);
}

.u_9d6004 .u_5b0247 a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-hover);
}

.u_9d6004 .u_5b0247 table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.95rem;
}

.u_9d6004 .u_5b0247 thead {
  background: rgba(10, 0, 93, 0.05);
}

.u_9d6004 .u_5b0247 th,
.u_9d6004 .u_5b0247 td {
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.u_9d6004 .text-content-wrapper-table {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 991px) {
  .u_b1acfe {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--page-gap);
    gap: var(--page-gap);
  }

  .u_cecf4f {
    order: 1;
  }

  .u_9d6004 {
    order: 2;
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .u_d48a1e {
    padding: var(--page-gap-reduced);
  }

  .u_b1acfe {
    padding: var(--page-gap-reduced);
    border-radius: calc(var(--radius) * 1.5);
  }

  .u_cecf4f::before {
    inset: 10%;
  }

  .u_9d6004 {
    align-items: flex-start;
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .u_b1acfe {
    gap: var(--page-gap-reduced);
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.25rem;
  }

  .u_9d6004 .u_5b0247 p {
    font-size: 0.95rem;
  }
}

/* BODY2 */
.u_d48a1e {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--background);
  overflow-x: hidden;
}

.u_d48a1e * {
  box-sizing: border-box;
}

.u_b1acfe {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: calc(var(--page-gap) * 1.4);
  align-items: center;
  background: linear-gradient(135deg, var(--light) 0%, #f7f5ff 40%, var(--light) 100%);
  border-radius: calc(var(--radius) * 2);
  box-shadow: var(--shadow);
  padding: calc(var(--page-gap) * 1.4);
  position: relative;
  overflow: hidden;
}

.u_b1acfe::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, var(--accent-transparent) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.35) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.u_cecf4f {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.u_cecf4f::before {
  content: "";
  position: absolute;
  inset: 12%;
  background: var(--accent-transparent);
  border-radius: calc(var(--radius) * 3);
  filter: blur(0.5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.u_cecf4f img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--radius) * 3);
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: translateY(0);
  transition: var(--transition);
  position: relative;
}

.u_d48a1e:hover .u_cecf4f img {
  transform: translateY(-4px) scale(1.01);
}

.u_9d6004 {
  position: relative;
  z-index: 1;
  min-width: 0;
  color: var(--dark-default);
  display: flex;
  align-items: center;
}

.u_9d6004 .u_5b0247 {
  width: 100%;
}

.u_9d6004 .u_5b0247 h2,
.u_9d6004 .u_5b0247 h3 {
  color: var(--dark);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.u_9d6004 .u_5b0247 h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.u_9d6004 .u_5b0247 h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.u_9d6004 .u_5b0247 p {
  margin: 0 0 12px;
  color: var(--dark-default);
  line-height: 1.6;
}

.u_9d6004 .u_5b0247 ul,
.u_9d6004 .u_5b0247 ol {
  margin: 0 0 16px 1.2em;
  padding: 0;
  color: var(--dark-default);
}

.u_9d6004 .u_5b0247 li {
  margin-bottom: 6px;
  padding-left: 0.25em;
}

.u_9d6004 .u_5b0247 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 0, 93, 0.2);
  transition: var(--transition);
}

.u_9d6004 .u_5b0247 a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-hover);
}

.u_9d6004 .u_5b0247 table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 0.95rem;
}

.u_9d6004 .u_5b0247 thead {
  background: rgba(10, 0, 93, 0.05);
}

.u_9d6004 .u_5b0247 th,
.u_9d6004 .u_5b0247 td {
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.u_9d6004 .text-content-wrapper-table {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 991px) {
  .u_b1acfe {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--page-gap);
    gap: var(--page-gap);
  }

  .u_cecf4f {
    order: 1;
  }

  .u_9d6004 {
    order: 2;
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .u_d48a1e {
    padding: var(--page-gap-reduced);
  }

  .u_b1acfe {
    padding: var(--page-gap-reduced);
    border-radius: calc(var(--radius) * 1.5);
  }

  .u_cecf4f::before {
    inset: 10%;
  }

  .u_9d6004 {
    align-items: flex-start;
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .u_b1acfe {
    gap: var(--page-gap-reduced);
  }

  .u_9d6004 .u_5b0247 h2 {
    font-size: 1.25rem;
  }

  .u_9d6004 .u_5b0247 p {
    font-size: 0.95rem;
  }
}