/* 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: color29 */
:root {
    --primary: #ba55d3;
    --primary-hover: #c670dc;
    --accent: #3cb371;
    --accent-hover: #57c089;
    --accent-secondary: #71cea1;
    --accent-transparent: rgba(60, 179, 113, 0.3);
    --background: #faf0e6;
    --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 */
body {

  overflow-x: hidden;

  font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;

  box-sizing: border-box;

  color: var(--dark);

  background: var(--background);

  margin: 0;

}





*,

*:before,

*:after {

  box-sizing: inherit;

  min-width: 0;

}







.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  padding: 16px var(--page-gap);

  max-width: 1200px;

  margin: 0 auto;

}





.logo-link {

  z-index: 12;

  display: inline-flex;

  align-items: center;

}





.main-nav {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: #2a2a2a;

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  padding-top: 80px;

  transform: translateY(-100%);

  transition: transform 0.4s ease;

  z-index: 1000;

  overflow-y: auto;

}



.main-nav.open {

  transform: translateY(0);

}



.menu-list {

  list-style: none;

  padding: 0 20px;

  margin: 0;

  width: 100%;

}



.menu-list li {

  position: relative;

}



.menu-list li a,

.dropbtn {

  display: block;

  padding: 14px 16px;

  color: #fff;

  font-weight: 500;

  text-decoration: none;

  text-transform: uppercase;

  transition: background 0.3s, color 0.3s;

  cursor: pointer;

}



.menu-list li a:hover,

.dropbtn:hover {

  background:  var(--accent, #8f66ff);;

  color: #fff;

}





.dropdown-content {

  display: none;

  flex-direction: column;

  background: #3b3b3b;

  margin-top: 0;

}



.dropdown.open > .dropdown-content {

  display: flex;

}



.dropdown-content a {

  padding-left: 30px;

  font-size: 1rem;

  color: #fff;

}



.dropdown-content a:hover {

  background: #78ae1b;

}





.back-btn {

  display: none;

  width: 100%;

  padding: 12px 20px;

}



.back-btn a {

  color: #fff;

  font-weight: 600;

  display: block;

}



.back-btn a:hover {

  color: #78ae1b;

}





.menu-toggle {

  background: none;

  border: none;

  cursor: pointer;

  z-index: 1100;

}



.burger-lines,

.close-icon {

  width: 24px;

  height: 24px;

  stroke: #fff;

}



.hidden {

  display: none;

}





.lang-switcher {

  position: relative;

  display: inline-block;

  z-index: 1100;

}



.lang-switcher__button {

  background: none;

  border: none;

  cursor: pointer;

  font-weight: 600;

  font-size: 14px;

  padding: 8px 12px;

  border-radius: 6px;

  display: flex;

  align-items: center;

  gap: 6px;

  color: #333;

}



.lang-switcher__list {

  position: absolute;

  top: 100%;

  right: 0;

  display: none;

  flex-direction: column;

  background: #fff;

  border-radius: 6px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

  padding: 8px 0;

  min-width: 160px;

  max-height: 300px;

  overflow-y: auto;

  column-count: 2;

  column-gap: 10px;

}



.lang-switcher.open .lang-switcher__list {

  display: flex;

}



.lang-switcher__list li {

  list-style: none;

}



.lang-switcher__list a {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 14px;

  text-decoration: none;

  color: #333;

  transition: background 0.3s;

}



.lang-switcher__list a:hover {

  background: #f0f0f0;

}



.flag {

  width: 20px;

  height: 14px;

  object-fit: cover;

  border-radius: 2px;

}





@media(min-width:1024px){

  .menu-toggle { display: none; }



  .main-nav {

    position: static;

    transform: none;

    flex-direction: row;

    width: auto;

    height: auto;

    background: none;

    padding: 0;

    gap: 30px;

    align-items: center;

    overflow: visible;

  }



  .menu-list {

    flex-direction: row;

    gap: 25px;

    width: auto;

  }



  .menu-list li { display: inline-flex; }



  .menu-list li a,

  .dropbtn {

    padding: 12px 16px;

    color: #333;

  }



  .dropdown-content {

    display: none;

    flex-direction: column;

    position: absolute;

    top: 100%;

    left: 0;

    min-width: 180px;

    background: #fff;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    border-radius: 6px;

    z-index: 100;

  }



  .dropdown:hover .dropdown-content { display: flex; }



  .dropdown-content a { color: #333; }



  .lang-switcher__button { color:  var(--accent, #8f66ff); }



  

  .lang-switcher__close {

    display: none !important;

  }



  

  .lang-switcher__list {

    position: absolute;

    top: 100%;

    right: 0;

    width: auto;

    max-height: 300px;

    background: #fff;

    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    column-count: 2;

    overflow-y: auto;

    z-index: 100;

  }

}





@media(max-width:1023px){

  .header-inner {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    flex-wrap: nowrap;

  }



  .main-nav {

    z-index: 1000;

    padding-top: 80px;

  }



  .lang-switcher {

    position: relative;

    z-index: 2000;

    display: inline-block;

  }



  .lang-switcher__button {

    color:  var(--accent, #8f66ff);

    z-index: 2200;

  }



  

 .lang-switcher__list {

    position: fixed;

    top: -20px; 

    left: 0;

    width: 100%;

    height: 100vh;

    max-height: none; 

    background: rgba(42,42,42,0.95);

    display: none;

    flex-direction: column;

    padding-top: 80px;

    column-count: 2;

    column-gap: 10px;

    overflow-y: auto;

    z-index: 2100;

  }



  .lang-switcher.open .lang-switcher__list {

    display: flex;

  }



  .lang-switcher__list a {

    color: #fff;

    padding: 16px 20px;

    width: 100%;

  }



  .lang-switcher__list a:hover {

    background: #78ae1b;

  }



  

  .lang-switcher__close {

    position: fixed;

    top: 20px;

    right: 20px;

    font-size: 2rem;

    color: #fff;

    cursor: pointer;

    display: none;

    z-index: 2200;

  }



  .lang-switcher.open .lang-switcher__close {

    display: block;

  }

}







@media (max-width: 480px) {

  .hero-title {font-size: 1.45rem;}

  .btn-signup, .hero-cta {font-size: 1rem;}

  .menu-toggle {margin-right: 6px; width: 48px;}

}







.main-nav.open {display: flex;}









.hero-section {

  position: relative;

  overflow: hidden;

  padding: 0;

  background: var(--accent);

  min-height: 680px;

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.hero-gradient {

  pointer-events: none;

  z-index: 1;

  position: absolute;

  inset: 0;

  background:

    linear-gradient(120deg, var(--header) 0%, transparent 45% 80%, var(--header) 100%) 0 0/100% 200% no-repeat,

    radial-gradient(ellipse at 80% 16%, var(--accent) 25%, transparent 70%) 0 0/100% 100% no-repeat;

  opacity: 0.62;

  mix-blend-mode: lighten;

  will-change: opacity;

}



.hero-grid {

  display: grid;

  grid-template-columns: 1.04fr 0.96fr;

  align-items: center;

  gap: calc(var(--section-gap) * 1.1);

  max-width: 1320px;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 1.3) var(--page-gap);

  position: relative;

  z-index: 2;

}



.hero-content {

  z-index: 3;

  position: relative;

  padding: 0 0.5em;

  text-shadow:

    0 3px 24px rgba(0,0,0,.06),

    0 1.5px 6px var(--accent-transparent);

}

.hero-title {

  font-size: clamp(2.4rem, 5vw, 3.75rem);

  font-weight: 800;

  color: var(--accent);

  line-height: 1.1;

  margin-top: 0;

  margin-bottom: 0.4em;

  letter-spacing: -.04em;

  text-wrap: pretty;

  background: linear-gradient(90deg, var(--accent), var(--primary));

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

}

.hero-desc {

  font-size: 1.25rem;

  color: var(--dark-muted);

  max-width: 36em;

  margin-bottom: 2em;

  margin-top: 0;

  letter-spacing: .01em;

  line-height: 1.6;

}



.hero-btn {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 0.8em;

  background: var(--primary);

  color: var(--light);

  padding: 1.1em 2.3em 1.1em 2em;

  border-radius: calc(var(--radius) * 2);

  font-size: 1.07rem;

  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 6px 32px -12px var(--primary-hover);

  transition: var(--transition), box-shadow .32s cubic-bezier(0.16,1,0.3,1);

  overflow: hidden;

  isolation: isolate;

  cursor: pointer;

  will-change: transform, box-shadow;

}

.hero-btn-arrow {

  transition: transform var(--transition);

  color: var(--light);

  position: relative;

  top: 1px;

}

.hero-btn-bg {

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, var(--primary-hover) 20%, var(--primary) 85%);

  opacity: 0;

  z-index: 0;

  border-radius: inherit;

  pointer-events: none;

  transition: opacity .32s var(--transition);

}

.hero-btn:hover,

.hero-btn:focus-visible {

  color: var(--light);

  box-shadow: 0 10px 44px -12px var(--primary-hover);

  transform: scale(1.055);

}

.hero-btn:hover .hero-btn-arrow,

.hero-btn:focus-visible .hero-btn-arrow {

  transform: translateX(6px) scale(1.12);

}

.hero-btn:hover .hero-btn-bg,

.hero-btn:focus-visible .hero-btn-bg {

  opacity: 0.19;

}

.hero-btn[data-animate]::after {

  content: "";

  position: absolute;

  z-index: 1;

  inset: 0;

  border-radius: inherit;

  background: rgba(255,255,255,0.13);

  pointer-events: none;

  opacity: 0;

  transition: opacity 0.22s;

}

.hero-btn:active[data-animate]::after {

  opacity: 1;

}



.hero-image-wrap {

  position: relative;

  z-index: 3;

}

.image-overlay {

  position: relative;

  margin: 0;

  border-radius: 2.3em;

  overflow: hidden;

  box-shadow: 0 14px 44px -8px var(--accent-transparent),

    0 1.5px 1.5px var(--shadow);

  display: flex;

  align-items: stretch;

  aspect-ratio: 16/10;

  background: var(--header);

  min-width: 0;

  min-height: 0;

}

.image-overlay img {

  display: block;

  width: 100%;

  height: auto;

  aspect-ratio: 16/10;

  object-fit: cover;

  z-index: 1;

  filter: brightness(0.94) saturate(1.15) contrast(1.02);

  transition: filter .65s cubic-bezier(.5,0,.2,1);

  will-change: filter;

}

.image-overlay:hover img {

  filter: brightness(1) saturate(1.18) contrast(1.06);

}

.img-overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background:

    linear-gradient(110deg, var(--accent-transparent) 14%, transparent 60%, var(--primary-hover) 100%);

  mix-blend-mode: multiply;

  opacity: 0.33;

  pointer-events: none;

  transition: opacity .45s cubic-bezier(.36,0,.49,1);

  will-change: opacity;

  backdrop-filter: blur(3px) saturate(1.15);

}



@media (max-width: 991px) {

  .hero-grid {

    grid-template-columns: 1fr;

    gap: var(--section-gap);

    padding: calc(var(--section-gap) * 1.1) var(--page-gap);

  }

  .image-overlay {

    border-radius: 1.1em;

  }

  .hero-content {

    padding: 0;

    text-align: center;

  }

  .hero-btn {

    margin-left: auto;

    margin-right: auto;

  }

}

@media (max-width: 600px) {

  .hero-section {

    min-height: 440px;

  }

  .hero-content {

    padding-top: 0;

    padding-bottom: 0;

  }

  .hero-title {

    font-size: clamp(1.45rem, 8.5vw, 2.1rem);

  }

  .image-overlay {

    border-radius: 11px;

    min-height: 180px;

  }

  .hero-grid {

    padding: 2em 0.7em 1.8em 0.7em;

  }

}





a.header-cta,

a.hero-btn,

a.header-cta:focus,

a.hero-btn:focus {

  outline: 0;

  border: none;

}



@media (hover: hover) and (pointer: fine) {

  .header-cta:active,

  .hero-btn:active {

    transform: scale(0.99) translateY(1px);

    transition: transform .14s cubic-bezier(.2,1,.49,1);

  }

}.logo-wrap img

/* LINKS */
.links-wrapper.links-block-tagcloud91 {

  max-width: 1200px;

  margin: 0 auto;

  padding: var(--page-gap);

}



.links-block-tagcloud91__title {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 2rem;

  color: var(--dark);

  letter-spacing: 0.01em;

}



.links-block-tagcloud91__list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: flex;

  flex-wrap: wrap;

  gap: 16px 20px;

  align-items: flex-start;

  box-sizing: border-box;

}



.links-block-tagcloud91__list li {

  

  margin: 0;

  padding: 0;

  display: flex;

}



.links-block-tagcloud91__list a {

  display: inline-block;

  padding: 8px 18px;

  background: var(--accent-transparent);

  color: var(--dark);

  border: 1.5px solid var(--accent);

  border-radius: var(--radius);

  font-size: 1rem;

  font-weight: 500;

  text-decoration: none;

  box-sizing: border-box;

  transition: 

    background 0.2s var(--transition), 

    color 0.2s var(--transition),

    transform 0.16s var(--transition),

    box-shadow 0.22s var(--transition);

  box-shadow: none;

  cursor: pointer;

  position: relative;

}





.links-block-tagcloud91__list a:hover,

.links-block-tagcloud91__list a:focus {

  background: var(--accent);

  color: var(--light);

  border-color: var(--primary);

  transform: translateY(-2px) scale(1.04);

  box-shadow: 0 6px 24px -8px var(--shadow);

  outline: none;

}





@media (max-width: 768px) {

  .links-wrapper.links-block-tagcloud91 {

    padding: calc(var(--page-gap) * 0.6);

  }

  .links-block-tagcloud91__list {

    gap: 10px 0;

    flex-wrap: wrap;

  }

  .links-block-tagcloud91__list li {

    width: 100%;

    display: block;

  }

  .links-block-tagcloud91__list a {

    width: 100%;

    display: block;

    text-align: left;

    padding: 10px 14px;

    font-size: 1rem;

  }

}



@media (max-width: 480px) {

  .links-block-tagcloud91__title {

    font-size: 1.15rem;

  }

}

/* FOOTER */
.footer-block-elite937 {
  background: var(--header);
  text-align: center;
  box-shadow: var(--shadow);
  padding: var(--section-gap) 0;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-elite937-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-block-elite937 img {
  display: block;
  margin: 0 auto;
}

.footer-elite937-copyright {
  color: var(--dark);
  margin-top: var(--page-gap);
  opacity: 0;
  animation: elite937-fade-in 1s ease 0.2s forwards;
  font-size: 1rem;
  transition: opacity 0.3s var(--transition);
}

@keyframes elite937-fade-in {
  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .footer-block-elite937 {
    padding: var(--page-gap) 0;
  }
  .footer-elite937-inner {
    padding: 0 var(--page-gap-reduced);
  }
  .footer-elite937-copyright {
    font-size: 0.95rem;
  }
}

/* BODY */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY1 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY2 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY3 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY4 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY5 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY6 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* BODY7 */
.content-block-split65--section {

  width: 100%;

  box-sizing: border-box;

  overflow-x: hidden;

  padding: var(--section-gap) 0;

  background: var(--background);

  

  opacity: 0;

  transform: translateX(-40px);

  animation: fadeInLeft487 0.9s cubic-bezier(0.39, 0, 0.17, 0.99) 0.1s forwards;

}

@keyframes fadeInLeft487 {

  to {

    opacity: 1;

    transform: none;

  }

}



.content-wrapper-gradient487 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  justify-content: center;

  max-width: 1200px;

  margin: 0 auto;

  gap: var(--section-gap);

  box-sizing: border-box;

}



.content-image--flare487 {

  position: relative;

  width: 50%;

  min-width: 0;

  display: flex;

  align-items: stretch;

  justify-content: flex-start;

  overflow: hidden;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 1;

  background: var(--dark-muted);

  box-sizing: border-box;

}

.content-image--flare487 img {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 320px;

  object-fit: cover;

  border-radius: var(--radius) 0 0 var(--radius);

  z-index: 2;

}



.content-image--overlay487,

.content-image--gradient487 {

  position: absolute;

  inset: 0;

  z-index: 3;

  pointer-events: none;

}

.content-image--overlay487 {

  background: linear-gradient(90deg, rgba(0,0,0,.50) 75%, rgba(0,0,0,0) 100%);

  backdrop-filter: blur(0.5px);

}

.content-image--gradient487 {

  background: linear-gradient(180deg, rgba(171, 161, 251, 0.21) 0%, rgba(10, 0, 93, 0.14) 100%);

}



.content-pane--shadow487 {

  width: 50%;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: 0 var(--radius) var(--radius) 0;

  padding: var(--section-gap) calc(var(--section-gap) * 1.2);

  box-sizing: border-box;

  position: relative;

  z-index: 4;

  margin-left: -4vw;

}



.text-content--spark487 {

  color: var(--dark-default);

  font-family: inherit;

  line-height: 1.6;

}

.text-content--spark487 h2,

.text-content--spark487 h3 {

  font-weight: 700;

  color: var(--primary);

  margin-bottom: 0.8em;

  line-height: 1.15;

}

.text-content--spark487 h2 {

  font-size: 2rem;

}

.text-content--spark487 h3 {

  font-size: 1.3rem;

}



.text-content--spark487 p {

  margin-bottom: 1em;

  color: var(--dark-muted);

  font-size: 1.1rem;

}



.text-content--spark487 ul,

.text-content--spark487 ol {

  margin: 1em 0 1em 1.3em;

  padding-left: 1.2em;

}

.text-content--spark487 ul {

  list-style-type: disc;

}

.text-content--spark487 ol {

  list-style-type: decimal;

}

.text-content--spark487 li {

  margin-bottom: .5em;

  color: var(--dark-default);

  font-size: 1.05rem;

}



.text-content--spark487 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark487 a:hover {

  color: var(--primary-hover);

  text-decoration: none;

}



.text-content--spark487 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  font-size: 1rem;

  background: var(--background);

  box-shadow: 0 2px 8px rgba(171,161,251,0.06);

  overflow-x: auto;

  display: block;

}

.text-content--spark487 thead {

  background: var(--accent-transparent);

}

.text-content--spark487 th,

.text-content--spark487 td {

  border: 1px solid var(--accent-secondary);

  padding: 0.7em 1em;

  text-align: left;

}

.text-content--spark487 th {

  font-weight: 600;

  color: var(--primary);

  background: var(--accent-transparent);

}

.text-content--spark487 td {

  color: var(--dark);

}

.text-content--spark487 b, .text-content--spark487 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content--spark487 i {

  font-style: italic;

  color: var(--accent);

}



.cta-button--soft487.button {

  margin-top: 2.3em;

  display: inline-block;

  background: var(--primary);

  color: var(--light);

  padding: 14px 34px;

  border-radius: var(--radius);

  font-size: 1.05rem;

  font-weight: 700;

  box-shadow: 0 3px 16px -3px var(--primary-hover), var(--shadow);

  text-decoration: none;

  letter-spacing: 0.01em;

  line-height: 1.33;

  border: none;

  transition: var(--transition), box-shadow 0.22s cubic-bezier(0.36,0,0.67,0.99);

  cursor: pointer;

  will-change: transform, box-shadow;

  outline: none;

}

.cta-button--soft487.button:hover,

.cta-button--soft487.button:focus-visible {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.025);

  box-shadow: 0 8px 32px -6px var(--primary-hover), var(--shadow);

}



@media (max-width: 1024px) {

  .content-wrapper-gradient487 {

    gap: var(--page-gap);

    max-width: 97vw;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 50vw;

    min-width: 0;

  }

}



@media (max-width: 768px) {

  .content-wrapper-gradient487 {

    flex-direction: column;

    gap: var(--page-gap);

    max-width: 100%;

  }

  .content-image--flare487,

  .content-pane--shadow487 {

    width: 100% !important;

    min-width: 0;

    max-width: 100vw;

    border-radius: var(--radius) var(--radius) 0 0;

  }

  .content-pane--shadow487 {

    border-radius: 0 0 var(--radius) var(--radius);

    margin-left: 0;

    padding: var(--page-gap) var(--page-gap-reduced);

    box-shadow: var(--shadow);

  }

  .cta-button--soft487.button {

    margin-top: 1.3em;

    font-size: 1rem;

    padding: 13px 20px;

  }

  .text-content--spark487 h2 {

    font-size: 1.35rem;

  }

}



@media (max-width: 430px) {

  .content-pane--shadow487 {

    padding: var(--page-gap-reduced);

  }

  .cta-button--soft487.button {

    padding: 11px 12px;

    font-size: .95rem;

  }

}





.content-block-split65--section, .content-wrapper-gradient487 {

  max-width: 100vw;

  box-sizing: border-box;

}



html, body {

  overflow-x: hidden;

}

/* blog/blogpreview.css */
.bloghero-eclipse712 {

  width: 100%;

  max-width: 1100px;

  margin: 0 auto var(--section-gap);

  position: relative;

  border-radius: 2.3em;

  padding: 3.7rem 1.7rem 3.1rem 1.7rem;

  background: linear-gradient(120deg, var(--background) 0%, var(--light) 85%);

  box-shadow: 0 8px 32px var(--shadow);

  overflow: hidden;

  text-align: center;

  z-index: 1;

}





.bloghero-eclipse712 .bloghero-decor-eclipse712 {

  position: absolute;

  top: -68px;

  right: -58px;

  z-index: 0;

  opacity: 0.42;

  animation: bloghero-glow712 10s ease-in-out infinite alternate;

  transform: scale(1.08) rotate(-6deg);

  filter: blur(2.7px) saturate(1.27);

  pointer-events: none;

  transition: opacity .25s;

}

.bloghero-eclipse712::before {

  

  content: '';

  display: block;

  position: absolute;

  left: 30%; top: 7%;

  width: 115px; height: 115px;

  border-radius: 50%;

  background: radial-gradient(circle at 60% 50%, var(--accent-secondary, #91BFFF) 0%, var(--accent) 46%, transparent 90%);

  opacity: 0.13;

  filter: blur(8px);

  z-index: 0;

  pointer-events: none;

}



@keyframes bloghero-glow712 {

  from { transform: scale(1.06) rotate(-11deg) translateY(0);}

  to {   transform: scale(1.17) rotate(-2deg) translateY(26px);}

}





.bloghero-info-eclipse712 {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

}





.bloghero-title-eclipse712 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  line-height: 1.14;

  letter-spacing: -0.022em;

  color: var(--primary);

  padding: 0.31em 0.1em;

  margin: 0;

  background: linear-gradient(90deg, var(--primary) 25%, var(--accent) 80%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  text-shadow:

    0 6px 44px var(--accent-transparent),

    0 2.5px 9px #0001;

  box-decoration-break: clone;

  animation: eclipseFadeUp712 1.13s cubic-bezier(.29,1.12,.22,1) both;

  border-radius: 1em;

  position: relative;

  isolation: isolate;

}

.bloghero-title-eclipse712::after {

  

  content: '';

  display: block;

  height: 4.5px;

  width: 84px;

  margin: 1em auto 0 auto;

  background: linear-gradient(90deg, var(--primary) 12%, var(--accent-secondary, #ABA1FB) 95%);

  border-radius: 7px;

  opacity: 0.43;

}



@keyframes eclipseFadeUp712 {

  from { opacity: 0; transform: translateY(42px) scale(.98);}

  to {   opacity: 1; transform: none;}

}





@media (max-width: 700px) {

  .bloghero-eclipse712 {

    max-width: 99vw;

    padding: 2.1rem 0.35rem 2.1rem 0.35rem;

    border-radius: 1.1em;

  }

  .bloghero-title-eclipse712 {

    font-size: var(--font-size-h2);

    padding: 0.19em 0.04em;

  }

  .bloghero-title-eclipse712::after {

    width: 41px;

    height: 2.2px;

    margin: .61em auto 0 auto;

    border-radius: 4px;

  }

  .bloghero-eclipse712 .bloghero-decor-eclipse712 { top: -67px; right: -37px; }

  .bloghero-eclipse712::before { left: 39%; top: 8%; width: 50vw; height: 41vw; }

}

@media (max-width: 420px) {

  .bloghero-title-eclipse712 { font-size: var(--font-size-h3); }

  .bloghero-eclipse712 { padding: 1.29rem 0.1rem; }

  .bloghero-title-eclipse712::after { width: 25vw; margin: .34em auto 0 auto; }

  .bloghero-eclipse712 .bloghero-decor-eclipse712 { top: -44px; right: -24px; }

}

/* blog/blogindex4.css */
.pillbox-omega903 {

  width: 100%;

  box-sizing: border-box;

  padding-top: 2.4rem;

}



.pillbox-title-omega903 {

  font-size: 2.13rem;

  font-weight: 900;

  letter-spacing: -0.014em;

  text-align: center;

  color: var(--primary);

  margin: 38px 0 36px 0;

  position: relative;

}

.pillbox-title-omega903::after {

  content: '';

  display: block;

  margin: 1.1em auto 0 auto;

  width: 63px;

  height: 6px;

  background: linear-gradient(93deg, var(--primary), var(--accent-secondary, #ABA1FB));

  border-radius: 9px;

  opacity: .38;

}



.pillbox-omega903 .pillbox-grid-omega903 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2.1rem 1.2rem;

  max-width: 1190px;

  margin: 0 auto 1.7rem auto;

  width: 100%;

  box-sizing: border-box;

}





.pillbox-omega903 .category-card {

  display: flex;

  flex-direction: column;

  border-radius: 44px;

  background: var(--light);

  box-shadow: 0 12px 30px -10px var(--shadow), 0 3px 7px var(--accent-transparent);

  transition: box-shadow .27s var(--transition), transform .21s var(--transition);

  min-width: 0;

}



.pillbox-omega903 .category-card:hover,

.pillbox-omega903 .category-card:focus-within {

  box-shadow: 0 22px 44px 0 var(--primary-hover), 0 16px 41px var(--accent-transparent);

  transform: translateY(-6px) scale(1.019);

  z-index: 2;

}





.pillbox-omega903 .category-card img {

  width: 100%;

  height: 200px;

  object-fit: cover;

  border-radius: 44px 44px 0 0;

  filter: grayscale(7%) brightness(1) contrast(1.09);

  transition: filter .18s, box-shadow .14s;

  display: block;

  box-shadow: 0 2.5px 9px 0 var(--accent-transparent);

}



.pillbox-omega903 .category-card:hover img,

.pillbox-omega903 .category-card:focus-within img {

  filter: none;

  box-shadow: 0 6px 18px 0 var(--primary-hover);

}





.pillbox-omega903 .category-card .category-info {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.4em;

  background: rgba(245,247,255,0.92);

  border-radius: 0 0 44px 44px;

  min-height: 104px;

  box-sizing: border-box;

  text-align: left;

  -webkit-backdrop-filter: blur(4px);

  backdrop-filter: blur(4px);

  z-index: 1;

  padding: 1.09em 1.16em 1.17em 1.09em;

  position: relative;

}





.pillbox-omega903 .category-card .category-info .category-title {

  color: var(--primary);

  font-size: 1.18rem;

  font-weight: 900;

  margin: 0 0 0.41em 0;

  letter-spacing: 0.008em;

  position: relative;

  z-index: 2;

}

.pillbox-omega903 .category-card .category-info .category-title::after {

  content: "";

  position: absolute;

  left: 1px; bottom: -0.3em;

  width: 27px;

  height: 4px;

  border-radius: 2px;

  background: var(--accent);

  opacity: 0.17;

}





.pillbox-omega903 .category-card .category-info .category-rating {

  display: inline-block;

  margin-bottom: 0.27em;

  width: 27px; height: 27px;

  border-radius: 99em;

  background: radial-gradient(circle at 60% 30%, var(--accent) 48%, var(--primary) 81%);

  box-shadow: 0 0 0 6px var(--accent-transparent);

  position: relative;

  margin-right: 9px;

  animation: pill-pulse903 2.4s infinite;

}

.pillbox-omega903 .category-card:hover .category-info .category-rating,

.pillbox-omega903 .category-card:focus-within .category-info .category-rating {

  animation: pill-pulse903 1s infinite;

  box-shadow: 0 0 0 14px var(--primary-hover);

}



@keyframes pill-pulse903 {

  0% { box-shadow: 0 0 0 6px var(--accent-transparent);}

  50% { box-shadow: 0 0 0 14px var(--accent-secondary, #ABA1FB);}

  100% { box-shadow: 0 0 0 6px var(--accent-transparent);}

}





.pillbox-omega903 .category-card .category-info .category-btn {

  display: inline-block;

  padding: 0.72em 1.19em;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.02rem;

  border-radius: 22px;

  box-shadow: 0 2px 9px 0 var(--primary-hover);

  text-decoration: none;

  transition: background .16s, color .15s, box-shadow .13s, opacity .12s, transform .17s;

  border: none;

  cursor: pointer;

  opacity: 1;

  pointer-events: auto;

  margin-top: 6px;

}





@media (max-width: 900px) {

  .pillbox-title-omega903 {

    font-size: 1.13rem;

    margin-bottom: 16px;

  }

  .pillbox-omega903 .pillbox-grid-omega903 {

    grid-template-columns: 1fr 1fr;

    gap: 1rem 0.5rem;

    padding-left: 2vw;

    padding-right: 2vw;

  }

  .pillbox-omega903 .category-card img {

    height: 200px;

    border-radius: 18px 18px 0 0;

  }

  .pillbox-omega903 .category-card .category-info {

    min-height: 31px;



    border-radius: 0 0 18px 18px;

  }

  .pillbox-omega903 .category-card .category-info .category-title {

    font-size: .93rem;

  }

  .pillbox-omega903 .category-card .category-info .category-rating {

    width: 13px; height: 13px;

  }

  .pillbox-omega903 .category-card .category-info .category-btn {

    font-size: .88rem;

    padding: 0.34em .67em;

    border-radius: 11px;

    margin-top: 2px;

  }

}



@media (max-width: 600px) {

  .pillbox-omega903 {

    padding: 8px 0 0 0;

  }

  .pillbox-title-omega903 {

    font-size: 0.95rem;

    margin: 8px 0 8px 0;

  }

  .pillbox-title-omega903::after {

    margin: .5em auto 0 auto;

    width: 19px;

    height: 2.5px;

    border-radius: 2px;

  }

  .pillbox-omega903 .pillbox-grid-omega903 {

    grid-template-columns: 1fr;

    gap: 0.73rem 0;

    max-width: 99vw;

    padding-left: 1vw;

    padding-right: 1vw;

  }

  .pillbox-omega903 .category-card {

    border-radius: 9px;

  }

  .pillbox-omega903 .category-card img {

    height: 200px;

    border-radius: 9px 9px 0 0;

  }

  .pillbox-omega903 .category-card .category-info {

    min-height: 13px;

   

    border-radius: 0 0 9px 9px;

  }

  .pillbox-omega903 .category-card .category-info .category-title {

    font-size: .74rem;

    margin-bottom: .19em;

  }

  .pillbox-omega903 .category-card .category-info .category-rating {

    width: 7px; height: 7px;

    margin-bottom: .12em;

  }

  .pillbox-omega903 .category-card .category-info .category-btn {

    font-size: .78rem;

    padding: 0.19em .37em;

    border-radius: 5px;

    margin-top: 1px;

  }

}

/* blog/reviewtableofcontent.css */
.sidebar-rew {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 20px;

    margin: 0 0 20px 0; 

  

}



.sidebar-rew h3 {

  font-size: var(--font-size-h2);

  font-weight: var(--font-weight-heading);

  margin-bottom: 15px;

  color: var(--dark);

}



.sidebar-rew ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.sidebar-rew ul li {

  margin-bottom: 10px;

  border-radius: var(--radius);

  transition: var(--transition);

}



.sidebar-rew ul li a {

  display: block;

  padding: 10px 15px;

  background: var(--light);

  color: var(--dark);

  text-decoration: none;

  font-size: var(--font-size-base);

  font-weight: var(--font-weight-body);

  border-radius: var(--radius);

  box-shadow: 0 1px 3px rgba(0,0,0,0.08);

  transition: var(--transition);

}



.sidebar-rew ul li a:hover {

  background: var(--accent-transparent);

  color: var(--dark);

}



@media (max-width: 768px) {

  .sidebar-rew {

    order: -1; 

    margin-bottom: 20px;

  }

}

/* blog/bloglink9.css */
.linksmini-underwave72 {

  width: 100%;

  max-width: 320px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  background: none;

  box-sizing: border-box;

  padding-top: 5px;

}



.linksmini-underwave72 .linksmini-title-underwave72 {

  font-size: 1.11rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: 0.97em;

  text-align: left;

  letter-spacing: -.01em;

  padding-left: 10px;

  position: relative;

}

.linksmini-underwave72 .linksmini-title-underwave72::before {

  content: '';

  position: absolute;

  left: 0; top: 9px;

  width: 5px; height: 21px;

  background: var(--primary);

  border-radius: 7px;

  opacity: 0.44;

}



.linksmini-underwave72 .linksmini-wrap-underwave72 {

  display: flex;

  flex-direction: column;

  gap: 9px;

}





.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 {

  display: flex;

  flex-direction: column;

  gap: 6px;

}





.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a {

  display: flex;

  flex-direction: row;

  align-items: center;

  background: transparent;

  border-radius: 9px;

  min-height: 41px;

  padding: 0.22em 0.33em 0.28em 0.13em;

  position: relative;

  text-decoration: none;

  color: var(--primary);

  font-weight: 700;

  font-size: 1.02rem;

  letter-spacing: 0.009em;

  box-shadow: none;

  transition: color 0.16s var(--transition), background 0.19s var(--transition), box-shadow 0.22s var(--transition);

  z-index: 1;

  outline: none;

}





.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image img {

  width: 31px;

  height: 31px;

  min-width: 31px;

  border-radius: 50%;

  margin-right: 11px;

  object-fit: cover;

  box-shadow: 0 0 0 5px var(--accent-transparent), 0 2px 8px var(--primary);

  background: var(--light);

  transition: box-shadow .22s var(--transition), filter .19s var(--transition);

}





.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a::after {

  content: '';

  display: block;

  position: absolute;

  left: 38px; right: 11px; bottom: 5px;

  height: 3px;

  border-radius: 3px;

  background: linear-gradient(90deg, var(--primary), var(--accent) 80%);

  opacity: 0.20;

  transform: scaleX(0);

  transition: transform .33s cubic-bezier(.77,0,.28,1), opacity .17s var(--transition);

  pointer-events: none;

  z-index: 0;

}

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:hover::after,

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:focus::after {

  opacity: 0.92;

  transform: scaleX(1);

}





.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:hover,

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:focus {

  color: var(--accent);

  background: var(--accent-transparent);

}

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:hover img,

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:focus img {

  box-shadow: 0 0 0 8px var(--accent), 0 4px 12px var(--primary);

  filter: brightness(1.15);

}



.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a:focus-visible {

  outline: 2.3px solid var(--primary);

  box-shadow: 0 0 0 3px var(--accent-transparent);

}

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image {

    display: block;

    align-items: center;

    justify-content: space-between;

    background: none;

    border-radius: 0;

    padding: 4px 45px;

    margin-bottom: 10px;

    box-shadow: none;

    transition: var(--transition);

}

.linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksmini-underwave72 {

    max-width: 99vw;

    border-radius: 5px;

  }

  .linksmini-underwave72 .linksmini-title-underwave72 {

    font-size: .98rem;

    padding-left: 6px;

  }

  .linksmini-underwave72 .linksmini-title-underwave72::before {

    width: 3.5px; height: 13px; left: 0;

  }

  .linksmini-underwave72 .linksmini-wrap-underwave72 {

    gap: 5px;

  }

  .linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a {

    font-size: .92rem;

    min-height: 32px;

  }

  .linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image img {

    width: 21px; height: 21px; min-width: 21px;

    margin-right: 6px;

    border-radius: 50%;

  }

  .linksmini-underwave72 .linksmini-wrap-underwave72 .link-item-underwave72 .with-image a::after {

    left: 26px; right: 7px; bottom: 2.3px; height: 2.1px;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}

/* blog/blogbody8.css */
.content-block-reviewdots-723 {

  width: 100%;

  max-width: 960px;

  margin: calc(var(--section-gap) * 1.07) auto var(--section-gap) auto;

  display: flex;

  flex-direction: column;

  align-items: stretch;

  box-sizing: border-box;

  overflow-x: hidden;

  gap: 0;

  position: relative;

  z-index: 1;

}





.image-wrapper-reviewdots-462 {

  width: 100%;

  aspect-ratio: 16/9.8;

  position: relative;

  display: flex;

  align-items: end;

  justify-content: center;

  margin-bottom: -16px;

  z-index: 2;

}

.floating-dots-bg-119 {

  position: absolute;

  top: 0; left: 0; right: 0; bottom: -11%;

  pointer-events: none;

  z-index: 1;

}

.floating-dots-bg-119 .dot {

  position: absolute;

  opacity: 0.22;

  border-radius: 50%;

  filter: blur(1.5px);

  animation: floatDot 8s infinite alternate ease-in-out;

  transition: background .3s var(--transition);

}

.dot1 {

  width: 54px;  height: 54px;

  left: 6%;  top: 16%;

  background: var(--primary);

  animation-delay: 0s;

}

.dot2 {

  width: 32px; height: 32px;

  right: 8%; top: 22%;

  background: var(--accent);

  animation-delay: 2.7s;

}

.dot3 {

  width: 40px;  height: 40px;

  left: 38%;  top: 20%;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 5.1s;

}

@keyframes floatDot {

  0% { transform: translateY(0) scale(1);}

  100% { transform: translateY(-18px) scale(1.16);}

}



.image-wrapper-reviewdots-462 img {

  width: 100%;

  display: block;

  border-radius: 28px 28px 18px 18px;

  object-fit: cover;

  position: relative;

  z-index: 2;

  box-shadow: 0 18px 48px 0 rgba(68,34,180,0.13);

  filter: brightness(.983) saturate(1.09);

  transition: filter .28s var(--transition), box-shadow .32s var(--transition), scale .25s var(--transition);

  scale: 1;

}

.image-wrapper-reviewdots-462:hover img,

.image-wrapper-reviewdots-462:focus-within img {

  filter: brightness(1.04) saturate(1.19) contrast(1.06);

  box-shadow: 0 36px 72px 0 rgba(55,20,170,0.18);

  scale: 1.015;

}





.text-content-reviewdots-977 {

  width: 100%;

  max-width: 690px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: var(--page-gap);

  display: flex;

  flex-direction: column;

  gap: 23px;

}

.text-content-reviewdots-977 .text-content {

  font-family: 'Inter', 'Manrope', 'Segoe UI', system-ui, sans-serif;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.67;

  letter-spacing: 0.013em;

  font-weight: 400;

}





.text-content-reviewdots-977 h2,

.text-content-reviewdots-977 h3 {

  color: var(--primary);

  font-family: inherit;

  font-weight: 800;

  margin: 0 0 13px 0;

  line-height: 1.09;

  letter-spacing: -0.016em;

  position: relative;

}

.text-content-reviewdots-977 h2 {

  font-size: 2.18rem;

}

.text-content-reviewdots-977 h3 {

  font-size: 1.19rem;

}



.text-content-reviewdots-977 h2::after,

.text-content-reviewdots-977 h3::after {

  content: '';

  display: inline-block;

  background: var(--accent);

  vertical-align: middle;

  margin-left: 10px;

  border-radius: 1.2px;

  opacity: 0.45;

}

.text-content-reviewdots-977 h2::after {

  width: 21px; height: 7px;

}

.text-content-reviewdots-977 h3::after {

  width: 12px; height: 4px;

}



.text-content-reviewdots-977 p {

  margin: 0 0 13px 0;

  color: var(--dark-default);

  font-size: 1.06rem;

}

.text-content-reviewdots-977 ul,

.text-content-reviewdots-977 ol {

  margin: 0 0 16px 21px;

  color: var(--dark);

  font-size: 1.07rem;

  line-height: 1.7;

}

.text-content-reviewdots-977 ul {

  list-style: disc inside;

}

.text-content-reviewdots-977 ol {

  list-style: decimal inside;

}

.text-content-reviewdots-977 ul li,

.text-content-reviewdots-977 ol li {

  margin-bottom: 7px;

  position: relative;

}

.text-content-reviewdots-977 ul li::before {

  content: '';

  display: inline-block;

  width: 7px;

  height: 7px;

  border-radius: 99em;

  background: var(--primary);

  margin-right: 7px;

  vertical-align: middle;

  opacity: 0.66;

}

.text-content-reviewdots-977 ol li::marker {

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 table {

  width: 100%;

  border-collapse: collapse;

  margin: 16px 0;

  font-size: 1rem;

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content-reviewdots-977 th,

.text-content-reviewdots-977 td {

  border: 1px solid var(--accent-secondary, #e2e6f3);

  padding: 10px 14px;

  color: var(--dark);

  text-align: left;

}

.text-content-reviewdots-977 th {

  background: var(--accent-transparent);

  color: var(--accent);

  font-weight: 700;

}





.text-content-reviewdots-977 a {

  color: var(--accent);

  text-decoration: underline;

  font-weight: 600;

  transition: color .13s var(--transition), box-shadow .12s var(--transition);

  box-shadow: 0 2px 0 0 var(--accent-transparent);

  border-radius: 2.5px;

  padding: 1.5px 2px;

}

.text-content-reviewdots-977 a:hover,

.text-content-reviewdots-977 a:focus {

  color: var(--primary);

  background: var(--accent-transparent);

  box-shadow: 0 4px 0 0 var(--primary);

  text-decoration: none;

  outline: none;

}



.text-content-reviewdots-977 b,

.text-content-reviewdots-977 strong {

  font-weight: 700;

  color: var(--primary);

}

.text-content-reviewdots-977 i,

.text-content-reviewdots-977 em {

  color: var(--accent);

  font-style: italic;

}





@media (max-width: 950px) {

  .content-block-reviewdots-723 {

    max-width: 99vw;

  }

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/12;

  }

  .text-content-reviewdots-977 {

    max-width: 99vw;

    padding: var(--page-gap-reduced);

  }

}

@media (max-width: 540px) {

  .image-wrapper-reviewdots-462 {

    aspect-ratio: 16/13;

    margin-bottom: -9px;

  }

  .floating-dots-bg-119 .dot1 { width: 36px; height: 36px; }

  .floating-dots-bg-119 .dot2 { width: 20px; height: 20px; }

  .floating-dots-bg-119 .dot3 { width: 24px; height: 24px; left: 30%; }

  .text-content-reviewdots-977 {

    gap: 15px;

    padding: var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced) var(--page-gap-reduced);

  }

  .text-content-reviewdots-977 .text-content {

    font-size: 0.97rem;

  }

  .text-content-reviewdots-977 h2 {

    font-size: 1.13rem;

  }

  .text-content-reviewdots-977 h3 {

    font-size: 0.93rem;

  }

}





.content-block-reviewdots-723 {

  opacity: 0;

  transform: translateY(26px) scale(0.985);

  transition: opacity .77s var(--transition), transform .77s var(--transition);

}

.content-block-reviewdots-723.inview {

  opacity: 1;

  transform: none;

}

@media (prefers-reduced-motion: no-preference) {

  .content-block-reviewdots-723 {

    will-change: opacity, transform;

  }

}