/* 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: color16 */
:root {
    --primary: #ff4500;
    --primary-hover: #ff5f24;
    --accent: #32cd32;
    --accent-hover: #47d747;
    --accent-secondary: #5de05d;
    --accent-transparent: rgba(50, 205, 50, 0.3);
    --background: #fffaf0;
    --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 */
html, body {

  height: 100%;

  margin: 0;

  padding: 0;

  width: 100vw;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--background, #FFF);

}



*, *:before, *:after {

  box-sizing: inherit;

}



body {

  font-family: "Inter", "Segoe UI", Arial, sans-serif;

  color: var(--light);

  font-size: 1.1rem;

  background: var(--background);

  min-height: 100vh;

}





.transparent-header {

  width: 100%;

  position: absolute;

  z-index: 10;

  background: transparent;

  top: 0;

  left: 0;

  padding: var(--page-gap-reduced, 10px) 0;

  text-align: center;

}



.header-inner {

  display: flex;

  justify-content: center;

  align-items: center;

  padding-top: calc(var(--page-gap-reduced) * 1.2);

  padding-bottom: calc(var(--page-gap-reduced) * 1.2);

}



.header-inner a {

  display: inline-block;

}





.hero-splash {

  width: 100vw;

  min-height: 100vh;

  padding: 0;

  display: flex;

  align-items: stretch;

  justify-content: center;

  position: relative;

  background: none;

}



.hero-image-bg {

  position: relative;

  width: 100vw;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  background: none;

  isolation: isolate;

}



.hero-image-bg img {

  width: 100vw;

  height: 100vh;

  object-fit: cover;

  object-position: center;

  display: block;

  position: absolute;

  top: 0; left: 0;

  z-index: 0;

  pointer-events: none;

  user-select: none;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  

  background: linear-gradient(120deg, rgba(0,0,0,0.60) 45%, rgba(0, 0, 0, 0.10) 95%);

  

  

  backdrop-filter: blur(2.5px) saturate(1.08);

  -webkit-backdrop-filter: blur(2.5px) saturate(1.08);

}





.hero-content {

  position: absolute;

  z-index: 2;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  color: var(--light);

  width: 100%;

  max-width: 550px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 2.2rem;

  text-align: center;

  padding: 0 2vw;

  

  opacity: 0;

  animation: fadeInUpHero 1.1s cubic-bezier(.48,0,.32,1.1) .3s forwards;

}



@keyframes fadeInUpHero {

  from { opacity: 0; transform: translate(-50%, calc(-50% + 40px)); }

  to { opacity: 1; transform: translate(-50%, -50%);}

}



.hero-content h1 {

  color: var(--light);

  font-size: clamp(2.0rem, 4vw, 3.8rem);

  font-weight: 700;

  line-height: 1.16;

  letter-spacing: -0.01em;

  margin: 0;

  margin-bottom: 0.5em;

  text-shadow: 0 6px 36px var(--shadow, rgba(0,0,0,0.24));

  

  

}



.cta-join {

  display: inline-block;

  padding: 0.85em 2.7em 0.85em 2.7em;

  background: linear-gradient(90deg, var(--primary) 70%, var(--primary-hover) 120%);

  color: var(--light);

  font-size: 1.2rem;

  font-weight: 600;

  border-radius: var(--radius, 6px);

  letter-spacing: 0.02em;

  box-shadow: 0px 4px 36px -12px var(--primary);

  cursor: pointer;

  text-decoration: none;

  border: none;

  outline: none;

  

  transition:

    background 0.23s var(--transition, cubic-bezier(.5,.2,.1,1)),

    box-shadow 0.22s var(--transition, cubic-bezier(.5,.2,.1,1)),

    transform 0.19s cubic-bezier(.65,0,.31,1);

  will-change: box-shadow, transform, background;

}



.cta-join:hover,

.cta-join:focus {

  background: linear-gradient(90deg, var(--primary-hover) 50%, var(--accent) 120%);

  color: var(--light);

  box-shadow: 0px 12px 48px -8px var(--primary-hover);

  transform: scale(1.045);

  text-decoration: none;

  outline: none;

}





.cta-join:focus-visible {

  outline: 2px solid var(--accent);

  outline-offset: 2.5px;

}





@media (max-width: 1100px) {

  .hero-content {

    max-width: 80vw;

    padding: 0 4vw;

  }

}



@media (max-width: 768px) {

  .header-inner {

    padding-top: calc(var(--page-gap-reduced) * 0.7);

    padding-bottom: calc(var(--page-gap-reduced) * 0.8);

  }

  .hero-content h1 {

    font-size: clamp(1.36rem, 6vw, 2.15rem);

  }

  .cta-join {

    font-size: 1rem;

    padding: 0.9em 2.2em;

    box-shadow: 0px 8px 32px -8px var(--primary);

  }

}



@media (max-width: 500px) {

  .transparent-header {

    padding-top: 0.4rem;

    padding-bottom: 0.2rem;

  }

  .header-inner {

    padding: 0.4rem 0 0.2rem 0;

  }

  .hero-content {

    max-width: 98vw;

    padding: 0 2.2vw;

    gap: 1.4rem;

  }

  .hero-image-bg {

    min-height: 100svh;

    height: 100svh;

  }

  .hero-image-bg img {

    height: 100svh;

  }

}





.cta-join::selection, .hero-content h1::selection {

  background: var(--primary);

  color: var(--light);

}

/* LINKS */
.links-wrapper.links-block-tabs351 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

  background: linear-gradient(120deg, var(--primary) 0%, var(--accent-hover) 100%);

  border-radius: var(--radius);

  box-shadow: 0 6px 32px 0 var(--shadow);

  overflow: hidden;

}



.links-block-tabs351__title {

  color: var(--light);

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 2rem;

  letter-spacing: 0.01em;

}



.links-block-tabs351__list {

  display: flex;

  flex-wrap: wrap;

  gap: 18px 26px;

  list-style: none;

  padding: 0;

  margin: 0;

}



.links-block-tabs351__list li {

  

}



.links-block-tabs351__list a {

  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255,255,255,0.11);

  color: var(--light);

  font-size: 1rem;

  font-weight: 600;

  letter-spacing: 0.03em;

  line-height: 1;

  text-decoration: none;

  transition: 

    background 0.25s var(--transition),

    color 0.25s var(--transition),

    transform 0.15s var(--transition),

    box-shadow 0.18s var(--transition);

  box-sizing: border-box;

  cursor: pointer;

  box-shadow: 0 2px 14px 0 rgba(0,0,0,0.10);

}



.links-block-tabs351__list a:hover,

.links-block-tabs351__list a:focus-visible {

  background: var(--light);

  color: var(--accent-hover);

  transform: scale(1.045);

  box-shadow: 0 6px 22px 0 rgba(49, 15, 130, 0.10);

}





@media (max-width: 768px) {

  .links-wrapper.links-block-tabs351 {

    padding: 24px 12px;

  }

  .links-block-tabs351__list {

    gap: 14px;

    flex-wrap: wrap;

  }

  .links-block-tabs351__list li {

    width: 100%;

    max-width: 100%;

  }

  .links-block-tabs351__list a {

    width: 100%;

    display: block;

    text-align: center;

    font-size: 1.04rem;

    padding: 14px 12px;

  }

}

/* FOOTER */
.footer-block-minimal374 {
  max-width: 100%;
  overflow-x: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer-block-minimal374 .footer-copyright {
  color: var(--dark-muted);
  margin-top: var(--page-gap-reduced);
  font-size: 1rem;
}

@media (max-width: 600px) {
  .footer-block-minimal374 img {
    width: 90px;
    height: 30px;
  }
  .footer-block-minimal374 .footer-copyright {
    font-size: 0.95rem;
    margin-top: var(--page-gap-reduced);
  }
  .footer-block-minimal374 {
    padding: calc(var(--section-gap) * 0.7);
  }
}

/* BODY */
.content-block-clean44 {

  background: var(--background);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  max-width: 800px;

  margin: var(--section-gap) auto;

  padding: 0;

  overflow-x: hidden;

  box-sizing: border-box;

  transition: var(--transition);

  display: flex;

  justify-content: center;

}



.content-wrapper-fresh44 {

  display: flex;

  flex-direction: column;

  width: 100%;

  padding: 40px 36px;

  box-sizing: border-box;

  gap: 24px;

  backdrop-filter: blur(0.5px);

}



.text-content-sharp44 {

  color: var(--dark);

  font-size: 1.11rem;

  line-height: 1.7;

  font-weight: 400;

  letter-spacing: 0.01em;

  

  display: flex;

  flex-direction: column;

  gap: 20px;

  word-break: break-word;

}





.text-content-sharp44 h2, .text-content-sharp44 h3 {

  margin: 0 0 12px 0;

  font-weight: 700;

  color: var(--accent);

  line-height: 1.22;

}



.text-content-sharp44 h2 {

  font-size: 2rem;

}



.text-content-sharp44 h3 {

  font-size: 1.3rem;

}



.text-content-sharp44 p {

  margin: 0 0 12px 0;

  color: var(--dark-default);

}



.text-content-sharp44 ul,

.text-content-sharp44 ol {

  margin: 0 0 16px 20px;

  padding: 0 0 0 18px;

  color: var(--dark);

  font-size: 1rem;

}

.text-content-sharp44 ul {

  list-style: disc;

}

.text-content-sharp44 ol {

  list-style: decimal;

}

.text-content-sharp44 li {

  margin-bottom: 7px;

  line-height: 1.6;

}



.text-content-sharp44 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s cubic-bezier(0.39,0,0.17,0.99);

  word-break: break-word;

}

.text-content-sharp44 a:hover,

.text-content-sharp44 a:focus {

  color: var(--primary-hover);

  text-decoration: underline;

}





.text-content-sharp44 table {

  width: 100%;

  border-collapse: separate;

  border-spacing: 0;

  overflow-x: auto;

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 1px 6px rgba(10,0,93,0.03);

  margin-bottom: 18px;

}

.text-content-sharp44 thead {

  background: var(--accent-transparent);

}

.text-content-sharp44 th,

.text-content-sharp44 td {

  padding: 10px 14px;

  border-bottom: 1px solid var(--background);

  text-align: left;

  color: var(--dark);

  font-size: 0.97rem;

}

.text-content-sharp44 th {

  font-weight: 600;

  color: var(--accent);

  background: var(--background);

}

.text-content-sharp44 tr:last-child td {

  border-bottom: none;

}





.text-content-sharp44 table {

  display: block;

  overflow-x: auto;

  max-width: 100%;

}

.text-content-sharp44 table thead, 

.text-content-sharp44 table tbody,

.text-content-sharp44 table tr {

  display: table;

  width: 100%;

  table-layout: fixed;

}



@media (max-width: 1024px) {

  .content-wrapper-fresh44 {

    padding: 32px 20px;

    gap: 18px;

  }

}



@media (max-width: 768px) {

  .content-block-clean44 {

    max-width: 94vw;

    margin: var(--page-gap) auto;

    border-radius: calc(var(--radius) * 2);

  }

  .content-wrapper-fresh44 {

    padding: 18px 10px;

    gap: 14px;

  }

  .text-content-sharp44 h2 {

    font-size: 1.3rem;

  }

  .text-content-sharp44 h3 {

    font-size: 1.13rem;

  }

  .text-content-sharp44 {

    font-size: 0.98rem;

  }

}





@media (max-width: 480px) {

  .content-block-clean44 {

    margin: var(--page-gap-reduced) 0;

    max-width: 100vw;

    min-width: 0;

    box-sizing: border-box;

    border-radius: var(--radius);

  }

  .content-wrapper-fresh44 {

    padding: 13px 3vw;

  }

  .text-content-sharp44 {

    gap: 11px;

  }

}

/* BODY1 */
.content-block-visualRight-flex62 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 48px 0;

  overflow-x: hidden;

  max-width: 100%;

}



.content-wrapper-blend62 {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 56px;

  max-width: 1160px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0 32px;

}



.text-content--spark62 {

  flex: 1 1 0%;

  max-width: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  min-width: 0;

}



.text-content--spark62 .text-content {

  color: var(--dark);

  font-family: inherit;

  line-height: 1.55;

  font-size: 1.12rem;

  letter-spacing: 0.01em;

  display: flex;

  flex-direction: column;

  gap: 20px;

}





.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 0.6em;

  line-height: 1.18;

}

.text-content--spark62 .text-content h2 {

  font-size: 2rem;

}

.text-content--spark62 .text-content h3 {

  font-size: 1.37rem;

}





.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin-left: 1.2em;

  padding-left: 0.4em;

  color: var(--dark-muted);

  font-size: 1em;

  gap: 0.5em;

  display: flex;

  flex-direction: column;

}

.text-content--spark62 .text-content li {

  margin-bottom: 0.4em;

  position: relative;

  line-height: 1.6;

}

.text-content--spark62 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--spark62 .text-content ol li {

  color: var(--primary);

}





.text-content--spark62 .text-content a {

  color: var(--accent);

  text-decoration: underline dotted;

  transition: color 0.22s;

}

.text-content--spark62 .text-content a:hover,

.text-content--spark62 .text-content a:focus {

  color: var(--accent-hover);

  outline: none;

}





.text-content--spark62 .text-content table {

  width: 100%;

  border-collapse: collapse;

  background: var(--light);

  font-size: 0.97em;

  box-shadow: 0 1px 4px rgba(10,0,93,0.05);

  border-radius: var(--radius);

  overflow-x: auto;

  margin: 12px 0;

  display: block;

}

.text-content--spark62 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 8px 13px;

  border: 1px solid var(--accent-transparent);

  text-align: left;

  color: var(--dark);

}

.text-content--spark62 .text-content th {

  font-weight: 600;

}





.text-content--spark62 .text-content b, 

.text-content--spark62 .text-content strong {

  color: var(--primary);

  font-weight: 600;

}

.text-content--spark62 .text-content i, 

.text-content--spark62 .text-content em {

  color: var(--dark-muted);

}





.cta-button--soft62.button {

  display: inline-block;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.04rem;

  box-shadow: 0 3px 16px 0 rgba(149,24,48,0.12);

  cursor: pointer;

  outline: none;

  transition: var(--transition), box-shadow 0.1s;

  margin-top: 12px;

  max-width: max-content;

  min-width: 120px;

  letter-spacing: 0.01em;

  position: relative;

}

.cta-button--soft62.button:hover,

.cta-button--soft62.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.015);

  box-shadow: 0 6px 24px 0 rgba(149,24,48,0.22);

}





.content-image--flare62 {

  flex: 1 1 0%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  height: 100%;

  position: relative;

  z-index: 1;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 2px 24px var(--accent-transparent);

  backdrop-filter: blur(0.5px);

  

}



.content-image--flare62 > * {

  display: block;

  max-width: 100%;

  width: 100%;

  border-radius: var(--radius);

  object-fit: cover;

  min-height: 240px;

  box-shadow: none;

}





@media (max-width: 1024px) {

  .content-wrapper-blend62 {

    gap: 32px;

    padding: 0 14px;

  }

  .text-content--spark62 {

    max-width: 420px;

    gap: 22px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend62 {

    flex-direction: column;

    gap: 26px;

    align-items: stretch;

    padding: 0 10px;

  }

  .text-content--spark62,

  .content-image--flare62 {

    max-width: 100%;

    width: 100%;

  }

  .content-image--flare62 {

    margin-top: 8px;

    margin-bottom: 0;

  }

  .content-image--flare62 > * {

    min-height: 180px;

    max-height: 340px;

  }

}



@media (max-width: 480px) {

  .content-block-visualRight-flex62 {

    padding: 20px 0;

  }

  .text-content--spark62 {

    gap: 14px;

  }

  .cta-button--soft62.button {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: 90px;

  }

  .content-image--flare62 > * {

    min-height: 120px;

    max-height: 220px;

  }

}





.content-block-visualRight-flex62, .content-wrapper-blend62, .text-content--spark62, .content-image--flare62, .text-content--spark62 .text-content, .cta-button--soft62.button {

  box-sizing: border-box;

}

/* BODY2 */
.content-block-parallax47 {

  position: relative;

  width: 100%;

  min-height: 520px;

  padding: var(--section-gap) 0;

  box-sizing: border-box;

  overflow-x: hidden;

  background: var(--background, #E5E5E5);

}



.content-background-parallax47 {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  overflow: hidden;

  z-index: 1;

  pointer-events: none;

}



.content-background-parallax47 > [src*="index_header_general_1024x640"] {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;

  

  position: absolute;

  inset: 0;

  will-change: transform;

}



.pattern-overlay-parallax47 {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background: repeating-linear-gradient(

    135deg,

    rgba(21,0,70,0.08) 0px,

    rgba(21,0,70,0.08) 3px,

    transparent 3px,

    transparent 18px

  ),

  radial-gradient(

    circle at 16px 18px,

    rgba(0,0,0,0.13) 1.5px,

    transparent 2.5px

  ),

  repeating-linear-gradient(

    45deg,

    rgba(171,161,251,0.10) 0px,

    rgba(171,161,251,0.10) 2px,

    transparent 2px,

    transparent 16px

  );

  opacity: 0.75;

  backdrop-filter: blur(0.5px);

  transition: opacity 0.5s var(--transition);

}



.content-center-wrapper-parallax47 {

  position: relative;

  z-index: 10;

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 520px;

  width: 100%;

  max-width: 100vw;

  padding: var(--section-gap) clamp(12px, 5vw, 48px);

  box-sizing: border-box;

}



.content-card-parallax47 {

  background: var(--light);

  box-shadow: var(--shadow), 0 6px 36px rgba(10,0,93,0.10);

  border-radius: 24px;

  padding: 46px 54px 32px 54px;

  max-width: 568px;

  width: 100%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 28px;

  backdrop-filter: blur(0.5px);

  transition: box-shadow var(--transition), transform var(--transition);

}



.content-card-parallax47:hover, .content-card-parallax47:focus-within {

  box-shadow: var(--shadow), 0 10px 48px rgba(10,0,93,0.18);

  transform: translateY(-4px) scale(1.013);

}



.text-content--spark47 {

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  color: var(--dark);

  text-align: center;

  font-size: 1.15rem;

  line-height: 1.75;

  font-weight: 400;

  letter-spacing: 0.01em;

  overflow-x: auto;

  width: 100%;

  

}



.text-content--spark47 h2,

.text-content--spark47 h3 {

  color: var(--primary);

  font-weight: 700;

  margin: 0 0 0.7em 0;

  letter-spacing: 0.01em;

  line-height: 1.25;

}



.text-content--spark47 h3 {

  color: var(--accent);

  font-size: 1.2em;

}



.text-content--spark47 p {

  margin: 0 0 1em 0;

}



.text-content--spark47 ul,

.text-content--spark47 ol {

  margin: 0 0 1.1em 1.3em;

  padding: 0 0 0 1em;

  color: var(--dark-default);

  font-size: 1em;

  line-height: 1.7;

}

.text-content--spark47 ul {

  list-style: disc;

}

.text-content--spark47 ol {

  list-style: decimal;

}

.text-content--spark47 li {

  margin-bottom: 0.4em;

}

.text-content--spark47 b {

  font-weight: 600;

  color: var(--primary);

}

.text-content--spark47 i {

  color: var(--accent);

}

.text-content--spark47 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color var(--transition);

}

.text-content--spark47 a:hover,

.text-content--spark47 a:focus {

  color: var(--primary-hover);

}



.text-content--spark47 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1.2em 0;

  font-size: 0.98em;

  overflow-x: auto;

  background: var(--background);

  border-radius: 6px;

  box-shadow: 0 1px 6px rgba(0,0,0,0.04);

  display: block;

}

.text-content--spark47 thead {

  background: var(--accent-transparent, #ecebfd);

  color: var(--accent);

  font-weight: 700;

}

.text-content--spark47 th,

.text-content--spark47 td {

  padding: 10px 18px;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  text-align: left;

  min-width: 80px;

}

.text-content--spark47 tr:last-child td {

  border-bottom: none;

}





.cta-button--soft47.button {

  background: var(--primary);

  color: var(--light);

  display: inline-block;

  padding: 13px 36px;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.09rem;

  box-shadow: 0 2px 12px 0 rgba(10,0,93,0.16);

  border: none;

  text-decoration: none;

  margin-top: 12px;

  transition: 

    background var(--transition), 

    color var(--transition), 

    box-shadow var(--transition), 

    transform .22s cubic-bezier(.3,1.6,.6,1), 

    filter 0.18s;

  cursor: pointer;

  outline: none;

  min-width: max-content;

  will-change: transform;

}

.cta-button--soft47.button:hover,

.cta-button--soft47.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: scale(1.045) translateY(-2px);

  box-shadow: 0 4px 18px 0 rgba(10,0,93,0.20);

  filter: brightness(1.04);

}



@media (max-width: 1024px) {

  .content-center-wrapper-parallax47,

  .content-card-parallax47 {

    padding-left: clamp(8px, 3vw, 30px);

    padding-right: clamp(8px, 3vw, 30px);

  }

  .content-card-parallax47 {

    max-width: 98vw;

    padding: 36px 11vw;

  }

  .content-center-wrapper-parallax47 {

    min-height: 360px;

  }

}

@media (max-width: 768px) {

  .content-block-parallax47 {

    padding: var(--section-gap) 0;

  }

  .content-center-wrapper-parallax47 {

    min-height: 240px;

    padding: var(--section-gap) clamp(5px, 4vw, 18px);

  }

  .content-card-parallax47 {

    padding: 30px 7vw 22px 7vw;

    border-radius: 14px;

    gap: 20px;

    max-width: 100%;

  }

  .text-content--spark47 {

    font-size: 1rem;

    text-align: left;

  }

  .pattern-overlay-parallax47 {

    opacity: 0.7;

  }

}

@media (max-width: 500px) {

  .content-card-parallax47 {

    padding: 16px 0vw 18px 0vw;

    border-radius: 9px;

    max-width: 100vw;

  }

  .content-background-parallax47 > [src*="index_header_general_1024x640"] {

    min-height: 200px;

  }

  .cta-button--soft47.button {

    width: auto;

    min-width: max-content;

    font-size: 1rem;

    padding: 11px 18px;

  }

}





.content-block-parallax47, .content-card-parallax47, .content-center-wrapper-parallax47, .text-content--spark47 {

  box-sizing: border-box;

  max-width: 100%;

  min-width: 0;

}

/* BODY3 */
.content-block-flare18 {

  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);

}



.content-wrapper-spark218 {

  display: flex;

  justify-content: space-between;

  align-items: stretch;

  gap: 40px;

  max-width: 1160px;

  margin: 0 auto;

  padding: 32px 24px;

  box-sizing: border-box;

}



.text-content--blend721 {

  flex: 1 1 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  min-width: 0;

  max-width: 54%;

}



.text-content--blend721 .text-content {

  font-family: inherit;

  color: var(--dark);

  font-size: 1.13rem;

  line-height: 1.65;

  margin-bottom: 40px;

  word-break: break-word;

}

.text-content--blend721 .text-content h2,

.text-content--blend721 .text-content h3 {

  color: var(--primary);

  margin: 0 0 16px 0;

  line-height: 1.2;

  font-weight: 700;

}

.text-content--blend721 .text-content h2 { font-size: 2.1rem; }

.text-content--blend721 .text-content h3 { font-size: 1.3rem; }

.text-content--blend721 .text-content p { margin-bottom: 16px; color: var(--dark-default);}

.text-content--blend721 .text-content ul, 

.text-content--blend721 .text-content ol {

  margin-bottom: 20px;

  padding-left: 1.2em;

}

.text-content--blend721 .text-content ul li,

.text-content--blend721 .text-content ol li {

  margin-bottom: 8px;

  font-size: inherit;

  color: var(--dark);

}

.text-content--blend721 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--blend721 .text-content ol li::marker {

  color: var(--primary);

}

.text-content--blend721 .text-content a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--blend721 .text-content a:hover {

  color: var(--primary-hover);

}

.text-content--blend721 .text-content table {

  width: 100%;

  border-collapse: collapse;

  font-size: 1rem;

  margin-bottom: 20px;

  overflow-x: auto;

  display: block;

}

.text-content--blend721 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--blend721 .text-content td, 

.text-content--blend721 .text-content th {

  border: 1px solid var(--accent-secondary);

  padding: 8px 12px;

  text-align: left;

  color: var(--dark);

}

.text-content--blend721 .text-content th {

  color: var(--accent);

  font-weight: 700;

  background: var(--light);

}

.text-content--blend721 .text-content b { font-weight: bold; color: var(--primary); }

.text-content--blend721 .text-content i { font-style: italic; color: var(--accent); }



.cta-button--soft81 {

  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;

}

.cta-button--soft81:hover, .cta-button--soft81: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);

}



.content-image--flare98 {

  flex: 0 0 auto;

  display: flex;

  align-items: center;

  min-width: 0;

  position: relative;

  max-width: 340px;

  width: 340px;

}

.image-border-svg-container-flare659 {

  position: relative;

  width: 340px;

  height: 500px;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: center;

}

.image-border-svg-flare659 {

  position: absolute;

  top: 0;

  left: 0;

  width: 340px;

  height: 500px;

  pointer-events: none;

  z-index: 2;

}

.image-inner-flare98 {

  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;

}

.image-inner-flare98 img {

  max-width: 100%;

  max-height: 100%;

  display: block;

  object-fit: cover;

  border-radius: 18px;

}





@media (max-width: 1024px) {

  .content-wrapper-spark218 {

    flex-direction: column;

    padding: 24px 10px;

    gap: 32px;

    align-items: stretch;

  }

  .text-content--blend721 {

    max-width: 100%;

    width: 100%;

    align-items: flex-start;

    margin-bottom: 0;

  }

  .content-image--flare98 {

    max-width: 340px;

    margin: 0 auto;

    width: 100%;

  }

  .image-border-svg-container-flare659 {

    width: 95vw;

    max-width: 340px;

    height: 70vw;

    max-height: 500px;

  }

  .image-border-svg-flare659,

  .image-inner-flare98 {

    width: 100% !important;

    height: 100% !important;

  }

}



@media (max-width: 768px) {

  .content-wrapper-spark218 {

    gap: 22px;

    padding: 14px 2vw;

  }

  .image-border-svg-container-flare659 {

    width: 88vw;

    max-width: 320px;

    height: 52vw;

    max-height: 400px;

  }

  .image-inner-flare98 {

    border-radius: 14px;

  }

}

@media (max-width: 480px) {

  .content-wrapper-spark218 {

    padding: 10px 1vw;

    gap: 12px;

  }

  .image-border-svg-container-flare659 {

    width: 98vw;

    height: 57vw;

    max-width: 320px;

    max-height: 320px;

  }

  .image-inner-flare98 {

    border-radius: 12px;

  }

  .text-content--blend721 .text-content h2 { font-size: 1.21rem; }

  .cta-button--soft81 {

    padding: 12px 18px;

    font-size: 1rem;

  }

}





.text-content--blend721 .text-content table {

  width: 100%;

  display: block;

  overflow-x: auto;

}

/* BODY4 */
.content-block-clip66 {

  width: 100%;

  box-sizing: border-box;

  padding: var(--section-gap) 0;

  background: var(--light);

  overflow-x: hidden;

}



.content-wrapper-triangle66 {

  display: flex;

  align-items: flex-start;

  gap: var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

  box-sizing: border-box;

}



.content-image--flare66 {

  flex: 0 0 320px;

  max-width: 320px;

  min-width: 0;

  position: relative;

  aspect-ratio: 2/3;

  box-sizing: border-box;

  transition: box-shadow 0.3s var(--transition), transform 0.3s var(--transition);

  clip-path: polygon(0 0, 100% 5%, 90% 100%, 0 90%);

  overflow: hidden;

  box-shadow: var(--shadow-lg, 0 6px 36px rgba(0,0,0,0.16));

  will-change: transform, box-shadow;

  background: var(--accent-transparent);

  z-index: 1;

}

.content-image--flare66:hover,

.content-image--flare66:focus-within {

  box-shadow: 0 12px 48px rgba(10,0,93,0.22);

  transform: translateY(-4px) scale(1.022);

}



.content-image--flare66 img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  filter: none;

  transition: filter 0.3s var(--transition), transform 0.3s var(--transition);

  border-radius: 0;

}



.text-content--spark66 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: var(--page-gap-reduced);

  box-sizing: border-box;

  padding: var(--page-gap) 0;

}



.text-content {

  color: var(--dark);

  font-size: 1.12rem;

  line-height: 1.7;

  font-weight: 400;

  box-sizing: border-box;

}



.text-content h2,

.text-content h3 {

  margin: 0 0 0.6em 0;

  color: var(--accent);

  font-family: inherit;

  font-weight: 700;

  line-height: 1.16;

}

.text-content h2 { font-size: 2.2rem; }

.text-content h3 { font-size: 1.35rem; }



.text-content p {

  margin: 0 0 1em 0;

  color: var(--dark-default, #222);

}

.text-content ul,

.text-content ol {

  margin: 0 0 1.1em 1.2em;

  padding: 0;

}

.text-content ul li,

.text-content ol li {

  margin-bottom: 0.5em;

  color: var(--dark-muted);

  font-size: 1rem;

  position: relative;

}

.text-content ul li::marker { color: var(--primary); }

.text-content ol li::marker { color: var(--accent); }



.text-content b,

.text-content strong { font-weight: 700; color: var(--dark); }

.text-content i,

.text-content em { font-style: italic; color: var(--accent); }



.text-content a {

  color: var(--primary);

  text-decoration: underline;

  transition: color .22s var(--transition);

}

.text-content a:hover { color: var(--primary-hover); }



.text-content table {

  border-collapse: separate;

  width: 100%;

  max-width: 100%;

  overflow-x: auto;

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  margin: 1em 0;

  font-size: 1rem;

}

.text-content th,

.text-content td {

  border: 1px solid var(--accent-secondary, #ABA1FB);

  padding: 0.66em 1em;

  text-align: left;

  color: var(--dark);

  background: rgba(255,255,255,.99);

}

.text-content th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 600;

}

.text-content tr:nth-child(even) td {

  background: var(--background);

}



.cta-button--soft66.button {

  margin-top: var(--page-gap-reduced);

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  font-weight: 600;

  font-size: 1.13rem;

  padding: 12px 28px;

  border: none;

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  text-decoration: none;

  cursor: pointer;

  transition:

    background 0.22s var(--transition),

    transform 0.18s var(--transition),

    box-shadow 0.18s var(--transition);

  outline: none;

  max-width: max-content;

  will-change: background, transform;

}



.cta-button--soft66.button:hover,

.cta-button--soft66.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.037);

  box-shadow: 0 8px 32px rgba(252,101,131,0.18);

}



@media (max-width: 1024px) {

  .content-block-clip66 { padding: var(--page-gap) 0; }

  .content-wrapper-triangle66 {

    gap: var(--page-gap-reduced);

  }

  .content-image--flare66 { flex-basis: 240px; max-width: 240px;}

}



@media (max-width: 768px) {

  .content-block-clip66 { padding: var(--page-gap-reduced) 0; }

  .content-wrapper-triangle66 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap-reduced);

    max-width: 98vw;

    width: 100%;

  }

  .content-image--flare66 {

    flex-basis: auto;

    max-width: 100%;

    width: 100%;

    aspect-ratio: 2/3;

    margin-bottom: var(--page-gap-reduced);

    clip-path: polygon(0 0, 100% 7%, 95% 100%, 0 93%);

  }

  .text-content--spark66 {

    padding: 0;

    gap: var(--page-gap-reduced);

  }

  .cta-button--soft66.button {

    font-size: 1rem;

    padding: 12px 22px;

  }

  .text-content table,

  .text-content thead,

  .text-content tbody,

  .text-content tr,

  .text-content th,

  .text-content td {

    font-size: 0.95rem;

    word-break: break-word;

  }

}



@media (max-width: 480px) {

  .content-wrapper-triangle66 { max-width: 100vw; }

  .content-image--flare66 { aspect-ratio: 1/1.195; }

}



*,

*:before,

*:after {

  box-sizing: inherit;

}