/* 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: color5 */
:root {
    --primary: #ff0055;
    --primary-hover: #ff1469;
    --accent: #00ffee;
    --accent-hover: #14fff2;
    --accent-secondary: #28fff5;
    --accent-transparent: rgba(0, 255, 238, 0.3);
    --background: #1a0033;
    --header: #000000;
    --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;

  color: var(--light);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.u_7b42f3 {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--header) 80%, transparent 20%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), var(--shadow);
}

.u_005529 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.u_1e0a2a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.u_1e0a2a img {
  height: auto;
  width: auto;
  max-width: 140px;
}

.u_dc3eda {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.u_296dfb {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  transform-origin: center;
}

.u_064757 {
  padding: 11px 24px;
  font-size: 15px;
}

.u_df3bb9 {
  padding: 6px 14px;
  font-size: 13px;
}

.u_ff6f8f {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: var(--light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.u_ff6f8f::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_ff6f8f:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--accent));
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.u_ff6f8f:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

.u_4ef4cc {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.u_4ef4cc:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--primary-hover);
  color: var(--primary-hover);
  transform: translateY(-1px);
}

.u_ca6fe4 {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--light);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
}

.u_ca6fe4:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.u_d798c5 {
  min-height: 100vh;
  background: #000000;
  padding-top: 72px;
}

.u_d435bf {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: var(--light);
}

.u_7ce76c {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  display: block;
  z-index: 1;
}

.u_5c5910 {
  position: absolute;
  inset: -5% -10%;
  z-index: 0;
  opacity: 0.45;
  transform: translate3d(0, 0, 0) scale(1.05);
  pointer-events: none;
}

.u_5c5910 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%) contrast(1.2) saturate(1.1);
}

.u_47411c {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.9), #000000);
  mix-blend-mode: normal;
}

.u_6a7629 {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: 8%;
  z-index: 1;
  opacity: 0.75;
  filter: blur(2px);
  animation: blobPulse 10s ease-in-out infinite alternate;
}

.u_633dc8 {
  position: absolute;
  inset-inline: 0;
  bottom: -30px;
  height: 260px;
  z-index: 3;
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_04fe99 {
  position: relative;
  z-index: 4;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px var(--page-gap) 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.u_6c4e4e {
  max-width: 540px;
  animation: fadeUp 1.1s ease-out both;
  animation-delay: 0.15s;
  transform-origin: left center;
}

.u_fd91c9 {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 14px;
}

.u_73fd37 {
  font-size: clamp(34px, 4.3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
  color: var(--light);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.9);
}

.u_f52532 {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
}

.u_afdb41 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.u_b4573d {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.u_ac6c61 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.u_e6e6d4 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.u_6cf04b {
  background: #ff3355;
  box-shadow: 0 0 0 0 rgba(255, 51, 85, 0.9);
  animation: pingLive 1.4s infinite;
}

.u_ae8ef9 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  min-width: 0;
}

.u_ae3440 {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    rgba(10, 10, 14, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(20px);
  animation: fadeUp 1s ease-out both;
  animation-delay: 0.35s;
}

.u_ae3440::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0.35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_9b7f49 {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.u_b64b29 {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.u_a15de4 {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  opacity: 0.2;
  animation: rotateGlow 9s linear infinite;
}

.u_42b3a4 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: var(--light);
}

.u_22f274 {
  min-width: 0;
}

.u_664f58 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 2px;
}

.u_13c3a4 {
  font-weight: 600;
  font-size: 15px;
  color: var(--light);
}

.u_063c3a {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 255, 180, 0.08);
  border: 1px solid rgba(0, 255, 180, 0.3);
  color: rgba(210, 255, 240, 0.96);
}

.u_c344c3 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.u_670761 {
  margin: 6px 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.u_7d857d {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.u_1f2d5f {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
}

.u_8a972c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.u_3d27a1 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.u_e4651b {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.u_5c4868 {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3.2;
}

.u_c79d79 {
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke: url(#loaderGradient);
  stroke-dasharray: 80;
  stroke-dashoffset: 120;
  transform-origin: 50% 50%;
  animation: loaderSpin 1.4s linear infinite;
}

.u_d73f26 {
  display: flex;
  flex-direction: column;
}

.u_54dac4 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
}

.u_559d46 {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.u_3dc5ff {
  position: relative;
  padding: 13px 14px 11px;
  border-radius: 16px;
  background: rgba(7, 7, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  animation: fadeUp 1.1s ease-out both;
  animation-delay: 0.5s;
}

.u_3dc5ff::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.1), transparent 60%);
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

.u_df62de {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.u_1afe0b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
}

.u_3fb95c {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0, 255, 180, 0.12);
  color: rgba(200, 255, 235, 0.98);
  border: 1px solid rgba(0, 255, 180, 0.35);
}

.u_dabfbf {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.u_c0c817 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.u_5d7c74 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.u_bab4c4 {
  background-image: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.u_9d678f {
  background-image: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.u_10bfca {
  background-image: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);
}

.u_40a56b {
  min-width: 0;
  flex: 1;
}

.u_1c7ec3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 1px;
}

.u_e93566 {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.u_56d866 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.u_bd3661 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pingLive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 51, 85, 0.9);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 51, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 51, 85, 0);
  }
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
    stroke-dashoffset: 120;
  }
  50% {
    stroke-dashoffset: 50;
  }
  100% {
    transform: rotate(360deg);
    stroke-dashoffset: 120;
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes blobPulse {
  0% {
    transform: translate3d(10px, 0, 0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(-20px, 10px, 0) scale(1.08);
    opacity: 0.9;
  }
  100% {
    transform: translate3d(0, -10px, 0) scale(1.02);
    opacity: 0.75;
  }
}

@media (max-width: 1024px) {
  .u_005529 {
    padding-inline: 16px;
  }

  .u_04fe99 {
    padding-inline: 16px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 26px;
  }

  .u_ae8ef9 {
    transform: translateY(6px);
  }

  .u_73fd37 {
    font-size: clamp(30px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .u_005529 {
    padding-inline: 14px;
  }

  .u_dc3eda {
    gap: 8px;
  }

  .u_296dfb {
    padding-inline: 14px;
  }

  .u_d798c5 {
    padding-top: 64px;
  }

  .u_d435bf {
    min-height: calc(100vh - 64px);
  }

  .u_04fe99 {
    padding: 48px 14px 28px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .u_6c4e4e {
    max-width: none;
    text-align: left;
  }

  .u_f52532 {
    max-width: none;
  }

  .u_afdb41 {
    justify-content: flex-start;
  }

  .u_ae8ef9 {
    max-width: 460px;
  }

  .u_6a7629 {
    width: 360px;
    height: 360px;
    right: -160px;
    top: 14%;
    opacity: 0.6;
  }

  .u_633dc8 {
    opacity: 0.45;
  }
}

@media (max-width: 540px) {
  .u_005529 {
    gap: 10px;
  }

  .u_1e0a2a img {
    max-width: 110px;
  }

  .u_dc3eda {
    flex-wrap: nowrap;
  }

  .u_4ef4cc {
    padding-inline: 10px;
    font-size: 12px;
  }

  .u_ff6f8f {
    padding-inline: 12px;
    font-size: 12px;
  }

  .u_d798c5 {
    padding-top: 60px;
  }

  .u_d435bf {
    min-height: calc(100vh - 60px);
  }

  .u_04fe99 {
    padding: 40px 14px 24px;
  }

  .u_fd91c9 {
    font-size: 11px;
  }

  .u_73fd37 {
    font-size: 28px;
  }

  .u_f52532 {
    font-size: 14px;
  }

  .u_afdb41 {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_064757 {
    width: auto;
    max-width: 100%;
  }

  .u_ae3440 {
    padding: 16px 14px 14px;
  }

  .u_8a972c {
    flex-direction: column;
    align-items: flex-start;
  }

  .u_3dc5ff {
    padding-inline: 12px;
  }

  .u_c0c817 {
    padding-inline: 4px;
  }
}

/* FOOTER */
.footer-block-elite902 {
  background: var(--header);
  box-shadow: 0 -4px 20px var(--shadow);
}

.footer-inner-elite902 {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-gap) var(--page-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap);
  box-sizing: border-box;
}

.footer-logo-elite902 img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-links-elite902 {
  display: flex;
  gap: calc(var(--page-gap) * 0.8);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links-elite902 a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--primary);
}

.footer-copy-elite902 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .footer-inner-elite902 {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--page-gap) * 0.7);
  }

  .footer-links-elite902 {
    justify-content: flex-start;
  }

  .footer-copy-elite902 {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .footer-inner-elite902 {
    padding: var(--section-gap) var(--page-gap-reduced);
  }

  .footer-links-elite902 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .footer-links-elite902 a {
    font-size: 0.9rem;
  }

  .footer-copy-elite902 {
    font-size: 0.85rem;
  }
}

/* BODY */
.u_09ecac {

  width: 100%;

  max-width: 100vw;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--light);

  padding: calc(var(--section-gap) * 1.5) 0;

}



.u_430f02 {

  display: grid;

  grid-template-rows: auto minmax(0, 1fr);

  place-items: center;

  max-width: 960px;

  margin: 0 auto;

  row-gap: 32px;

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 40px 32px 0 32px;

  transition: box-shadow 0.35s var(--transition), transform 0.4s var(--transition);

  animation: fadeIn28 1.15s cubic-bezier(0.44,0,0.36,1) 0s 1 backwards;

}



@keyframes fadeIn28 {

  0% {

    opacity: 0;

    transform: translateY(40px) scale(0.98);

  }

  100% {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}



.u_47ec6b {

  width: 100%;

  max-width: 580px;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.7;

  z-index: 2;

  padding-bottom: 12px;

  

}



.u_47ec6b h2,

.u_47ec6b h3 {

  color: var(--primary);

  margin-bottom: 18px;

  margin-top: 0;

  font-weight: 700;

  line-height: 1.2;

}



.u_47ec6b h2 {

  font-size: 2.1rem;

}

.u_47ec6b h3 {

  font-size: 1.35rem;

}



.u_47ec6b p {

  margin: 0 0 18px 0;

}



.u_47ec6b ul,

.u_47ec6b ol {

  margin: 0 0 18px 20px;

  padding: 0 0 0 16px;

  color: var(--dark-muted);

  font-size: 1rem;

}



.u_47ec6b li {

  margin-bottom: 10px;

  

  position: relative;

}

.u_47ec6b ul>li::before {

  content: '';

  background: var(--accent);

  border-radius: 50%;

  width: 7px;

  height: 7px;

  display: inline-block;

  margin-right: 10px;

  vertical-align: middle;

  box-shadow: 0 1px 6px var(--accent-transparent);

}



.u_47ec6b a {

  color: var(--accent);

  font-weight: 600;

  text-decoration: underline;

  transition: color 0.20s var(--transition);

}

.u_47ec6b a:hover, .u_47ec6b a:focus {

  color: var(--primary);

  text-decoration: none;

}



.u_47ec6b table {

  width: 100%;

  border-collapse: collapse;

  margin: 20px 0;

  font-size: 0.98rem;

  overflow-x: auto;

  display: block;

}



.u_47ec6b thead {

  background: var(--accent-transparent);

}

.u_47ec6b th, .u_47ec6b td {

  border: 1px solid var(--dark-muted);

  padding: 9px 12px;

  text-align: left;

}

.u_47ec6b th {

  font-weight: 700;

  color: var(--accent);

}

.u_47ec6b td {

  color: var(--dark-default);

}



.u_d90472.u_620e5a {

  background: var(--primary);

  color: var(--light);

  padding: 14px 36px;

  border: none;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 4px 18px rgba(149, 24, 48, 0.08), 0 1.5px 4px rgba(0,0,0, .07);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.21s var(--transition);

  margin-top: 23px;

  letter-spacing: 0.01em;

  cursor: pointer;

  min-width: 130px;

  text-align: center;

  position: relative;

  outline: none;

  will-change: transform, box-shadow;

}



.u_d90472.u_620e5a:hover,

.u_d90472.u_620e5a:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 6px 24px rgba(252, 101, 131, 0.16), 0 2px 12px var(--accent-transparent);

  transform: translateY(-2px) scale(1.025);

}



.u_f03778 {

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: end;

  padding: 0 0 16px 0;

  

  margin: 0 auto;

}



.u_f03778 img,

.u_f03778 > * {

  width: 100%;

  max-width: 1024px;

  height: auto;

  box-shadow: 0 6px 36px var(--accent-transparent), 0 2px 10px rgba(0,0,0, .06);

  border-radius: 18px;

  border: 2.5px solid var(--accent-secondary, var(--accent));

  transition: box-shadow 0.30s var(--transition), border-color 0.23s;

  background: var(--light);

  

  backdrop-filter: blur(0.5px);

  object-fit: cover;

  display: block;

}



@media (max-width: 1200px) {

  .u_430f02 {

    max-width: 100vw;

    padding-left: 5vw;

    padding-right: 5vw;

  }

  .u_f03778 img,

  .u_f03778 > * {

    max-width: 90vw;

  }

}



@media (max-width: 768px) {

  .u_430f02 {

    padding: 32px 7vw 0 7vw;

    row-gap: 21px;

    box-shadow: none;

  }

  .u_47ec6b {

    max-width: 100%;

    font-size: 1rem;

    padding-bottom: 7px;

  }

  .u_d90472.u_620e5a {

    padding: 11px 24px;

    font-size: 1rem;

    margin-top: 16px;

    min-width: 110px;

  }

  .u_f03778 img,

  .u_f03778 > * {

    border-radius: 11px;

    max-width: 96vw;

  }

}



@media (max-width: 480px) {

  .u_430f02 {

    padding: 20px 1vw 0 1vw;

    border-radius: 0;

    row-gap: 16px;

  }

  .u_09ecac {

    padding: 23px 0;

  }

  .u_f03778 img,

  .u_f03778 > * {

    border-radius: 6px;

    border-width: 1px;

    max-width: 99vw;

  }

}

/* BODY1 */
.u_747822 {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: var(--section-gap) var(--page-gap);
  background: var(--background);
  color: var(--dark-default);
  overflow-x: hidden;
}
.u_747822 * {
  box-sizing: border-box;
  max-width: 100%;
}
.u_be873d {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4.5fr);
  gap: calc(var(--page-gap) * 1.2);
  align-items: center;
}
.u_d78f44 {
  position: relative;
  border-radius: calc(var(--radius) * 3);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.u_d78f44 img {
  display: block;
  width: 100%;
  height: auto;
}
.u_a7871e {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  pointer-events: none;
}
.u_529882 {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: calc(var(--radius) * 2);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.5px);
  color: var(--light);
  box-shadow: var(--shadow);
}
.u_283c0a {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.u_283c0a.u_804601 {
  justify-content: flex-start;
  gap: 18px;
}
.u_2b7c92,
.u_944b01 {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.u_2b7c92 {
  background: var(--primary);
  color: var(--light);
}
.u_944b01 {
  background: var(--accent-transparent);
  color: var(--light);
}
.u_36a4d1 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.u_d7f280 {
  font-size: 18px;
  font-weight: 700;
}
.u_d4acf9 {
  font-size: 12px;
  opacity: 0.8;
}
.u_f2251d {
  min-width: 0;
}
.u_f77847 {
  padding: 22px 24px;
  border-radius: calc(var(--radius) * 2.5);
  background: var(--header);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.u_f2251d .u_83c386 {
  color: var(--dark-default);
}
.u_f2251d .u_83c386 h2,
.u_f2251d .u_83c386 h3 {
  color: var(--dark);
  margin-top: 0;
}
.u_f2251d .u_83c386 p {
  color: var(--dark-muted);
}
.u_f2251d .u_83c386 ul,
.u_f2251d .u_83c386 ol {
  padding-left: 20px;
  margin: 10px 0;
  color: var(--dark-muted);
}
.u_f2251d .u_83c386 li {
  margin-bottom: 4px;
}
.u_f2251d .u_83c386 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.u_f2251d .u_83c386 a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.u_f2251d .u_83c386 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.u_f2251d .u_83c386 thead {
  background: var(--accent-transparent);
}
.u_f2251d .u_83c386 th,
.u_f2251d .u_83c386 td {
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}
.u_f2251d .u_83c386 table-wrapper {
  display: block;
  width: 100%;
  overflow-x: auto;
}
.u_2581d1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.u_326d2a.u_4294b1 {
  background: var(--primary);
  color: var(--light);
  padding: 12px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  transform-origin: center;
  max-width: max-content;
}
.u_326d2a.u_4294b1:hover {
  background: var(--primary-hover);
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.u_326d2a.u_4294b1:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}
.u_7794dd {
  background: var(--light);
  color: var(--accent);
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent-transparent);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: max-content;
}
.u_7794dd:hover {
  background: var(--accent-transparent);
  color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.u_7794dd:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}
.u_8dfd88 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--dark-muted);
}
.u_f8a2b7 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-transparent);
}
.u_274f95 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-placeholder-textonly-spark118 {
  max-width: 820px;
  margin: calc(var(--section-gap) * 0.8) auto 0;
  padding: 20px 22px 4px;
  border-radius: calc(var(--radius) * 2);
  background: var(--header);
  box-shadow: var(--shadow);
}
.content-placeholder-textonly-spark118 .u_83c386 {
  color: var(--dark-default);
}
.content-placeholder-textonly-spark118 .u_83c386 h2,
.content-placeholder-textonly-spark118 .u_83c386 h3 {
  color: var(--dark);
}
.content-placeholder-textonly-spark118 .u_83c386 p,
.content-placeholder-textonly-spark118 .u_83c386 li,
.content-placeholder-textonly-spark118 .u_83c386 td {
  color: var(--dark-muted);
}
.content-placeholder-textonly-spark118 .u_83c386 ul,
.content-placeholder-textonly-spark118 .u_83c386 ol {
  padding-left: 20px;
}
.content-placeholder-textonly-spark118 .u_83c386 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.content-placeholder-textonly-spark118 .u_83c386 a:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.content-placeholder-textonly-spark118 .u_83c386 table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.content-placeholder-textonly-spark118 .u_83c386 th,
.content-placeholder-textonly-spark118 .u_83c386 td {
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}
@media (max-width: 1024px) {
  .u_be873d {
    grid-template-columns: minmax(0, 1.1fr);
  }
  .u_d78f44 {
    order: -1;
  }
  .u_f77847 {
    padding: 20px 18px;
  }
}
@media (max-width: 768px) {
  .u_747822 {
    padding: var(--page-gap-reduced);
  }
  .u_be873d {
    gap: var(--page-gap-reduced);
  }
  .u_529882 {
    inset: auto 12px 12px 12px;
    padding: 12px 13px;
  }
  .u_283c0a.u_804601 {
    gap: 14px;
  }
  .u_f77847 {
    padding: 18px 14px;
    border-radius: calc(var(--radius) * 1.5);
  }
  .u_2581d1 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .u_274f95 {
    white-space: normal;
  }
  .content-placeholder-textonly-spark118 {
    margin-top: var(--section-gap);
    padding-inline: 16px;
  }
}
@media (max-width: 480px) {
  .u_529882 {
    inset: auto 10px 10px 10px;
  }
  .u_283c0a {
    flex-direction: row;
  }
  .u_283c0a.u_804601 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .u_d7f280 {
    font-size: 16px;
  }
  .u_2581d1 {
    flex-direction: column;
    align-items: stretch;
  }
  .u_326d2a.u_4294b1,
  .u_7794dd {
    width: auto;
    align-self: flex-start;
  }
}

/* BODY2 */
.u_679383 {

  box-sizing: border-box;

  position: relative;

  z-index: 1;

  overflow-x: hidden;

  width: 100%;

  padding: var(--section-gap) 0;

  background: linear-gradient(120deg, var(--accent-transparent) 0%, var(--light) 100%);

  box-shadow: var(--shadow);

}



.u_593924 {

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 40px;

  max-width: 1160px;

  margin: 0 auto;

  padding: 32px 24px;

  box-sizing: border-box;

}



.u_d0321a {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  max-width: 54%;

}



.u_d0321a .u_a7be2f {

  font-family: inherit;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.65;

  margin-bottom: 40px;

  word-break: break-word;

}

.u_d0321a .u_a7be2f h2,

.u_d0321a .u_a7be2f h3 {

  color: var(--primary);

  margin: 0 0 16px 0;

  line-height: 1.2;

  font-weight: 700;

}

.u_d0321a .u_a7be2f h2 { font-size: 2.1rem; }

.u_d0321a .u_a7be2f h3 { font-size: 1.3rem; }

.u_d0321a .u_a7be2f p { margin-bottom: 16px; color: var(--dark-default);}

.u_d0321a .u_a7be2f ul, 

.u_d0321a .u_a7be2f ol {

  margin-bottom: 20px;

  padding-left: 1.2em;

}

.u_d0321a .u_a7be2f ul li,

.u_d0321a .u_a7be2f ol li {

  margin-bottom: 8px;

  font-size: inherit;

  color: var(--dark);

}

.u_d0321a .u_a7be2f ul li::marker {

  color: var(--accent);

}

.u_d0321a .u_a7be2f ol li::marker {

  color: var(--primary);

}

.u_d0321a .u_a7be2f a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.u_d0321a .u_a7be2f a:hover {

  color: var(--primary-hover);

}

.u_d0321a .u_a7be2f table {

  width: 100%;

  border-collapse: collapse;

  font-size: 1rem;

  margin-bottom: 20px;

  overflow-x: auto;

  display: block;

}

.u_d0321a .u_a7be2f thead {

  background: var(--accent-transparent);

}

.u_d0321a .u_a7be2f td, 

.u_d0321a .u_a7be2f th {

  border: 1px solid var(--accent-secondary);

  padding: 8px 12px;

  text-align: left;

  color: var(--dark);

}

.u_d0321a .u_a7be2f th {

  color: var(--accent);

  font-weight: 700;

  background: var(--light);

}

.u_d0321a .u_a7be2f b { font-weight: bold; color: var(--primary); }

.u_d0321a .u_a7be2f i { font-style: italic; color: var(--accent); }



.u_d9b98a {

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 38px;

  border-radius: var(--radius);

  font-size: 1.07rem;

  font-weight: 600;

  box-shadow: 0px 6px 24px rgba(10,0,93,0.09), var(--shadow);

  outline: none;

  border: none;

  cursor: pointer;

  text-decoration: none;

  letter-spacing: 0.02em;

  transition: background 0.23s var(--transition), 

              color 0.18s var(--transition), 

              box-shadow 0.23s var(--transition), 

              transform 0.2s;

  will-change: transform;

}

.u_d9b98a:hover, .u_d9b98a:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0px 12px 28px rgba(10,0,93,0.16), var(--shadow);

}



.u_443b3e {

  flex: 0 0 auto;

  display: flex;

  align-items: center;

  min-width: 0;

  position: relative;

  max-width: 340px;

  width: 340px;

}

.u_e7a676 {

  position: relative;

  width: 340px;

  height: 500px;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}

.u_6b1b97 {

  position: absolute;

  top: 0;

  left: 0;

  width: 340px;

  height: 500px;

  pointer-events: none;

  z-index: 2;

}

.u_d5f88c {

  position: absolute;

  top: 15px;

  left: 15px;

  width: 310px;

  height: 470px;

  overflow: hidden;

  z-index: 1;

  border-radius: 18px;

  box-shadow: 0 12px 32px rgba(10,0,93,0.11), var(--shadow);

  backdrop-filter: blur(2px);

  background: var(--light);

  display: flex;

  align-items: center;

  justify-content: center;

}

.u_d5f88c img {

  max-width: 100%;

  max-height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;

}





@media (max-width: 1024px) {

  .u_593924 {

    flex-direction: column;

    padding: 24px 10px;

    gap: 32px;

    align-items: stretch;

  }

  .u_d0321a {

    max-width: 100%;

    width: 100%;

    align-items: flex-start;

    margin-bottom: 0;

  }

  .u_443b3e {

    max-width: 340px;

    margin: 0 auto;

    width: 100%;

  }

  .u_e7a676 {

    width: 95vw;

    max-width: 340px;

    height: 70vw;

    max-height: 500px;

  }

  .u_6b1b97,

  .u_d5f88c {

    width: 100% !important;

    height: 100% !important;

  }

}



@media (max-width: 768px) {

  .u_593924 {

    gap: 22px;

    padding: 14px 2vw;

  }

  .u_e7a676 {

    width: 88vw;

    max-width: 320px;

    height: 52vw;

    max-height: 400px;

  }

  .u_d5f88c {

    border-radius: 14px;

  }

}

@media (max-width: 480px) {

  .u_593924 {

    padding: 10px 1vw;

    gap: 12px;

  }

  .u_e7a676 {

    width: 98vw;

    height: 57vw;

    max-width: 320px;

    max-height: 320px;

  }

  .u_d5f88c {

    border-radius: 12px;

  }

  .u_d0321a .u_a7be2f h2 { font-size: 1.21rem; }

  .u_d9b98a {

    padding: 12px 18px;

    font-size: 1rem;

  }

}





.u_d0321a .u_a7be2f table {

  width: 100%;

  display: block;

  overflow-x: auto;

}