/* 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: color11 */
:root {
    --primary: #6a0dad;
    --primary-hover: #7e2ac1;
    --accent: #ffcc00;
    --accent-hover: #ffd633;
    --accent-secondary: #ffe066;
    --accent-transparent: rgba(255, 204, 0, 0.3);
    --background: #f3e5f5;
    --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 */
:where(html) {

  box-sizing: border-box;

  font-family: 'Nunito', 'Segoe UI', 'Arial', sans-serif;

}

*,

*::before,

*::after {

  box-sizing: inherit;

}

body {

  margin: 0;

  padding: 0;

  background: var(--background);

  overflow-x: hidden;

}







.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-cozy {

  display: grid;

  min-height: 100dvh;

  place-items: center;

  position: relative;

  overflow: hidden;

  box-shadow: var(--shadow);

}



.hero-bg-img {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  z-index: 0;

  pointer-events: none;

  overflow: hidden;

}

.hero-bg-img img {

  width: 100%;

  height: 100dvh;

  object-fit: cover;

  object-position: 50% 40%;

  user-select: none;

  display: block;

  filter: none;

  transition: transform 0.8s cubic-bezier(.48,.01,.14,1), opacity 1s cubic-bezier(.42,.01,1,.99);

  will-change: transform;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  background:

    linear-gradient(120deg, var(--accent), var(--accent-transparent) 90%),

    linear-gradient(to bottom, rgba(255,255,255,0.07) 10%, rgba(0,0,0,0.28) 90%);

  mix-blend-mode: multiply;

  opacity: 0.87;

  pointer-events: none;

  transition: background 0.5s var(--transition);

  will-change: opacity;

  border-bottom-left-radius: 48px;

}





.hero-content {

  position: relative;

  z-index: 5;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  max-width: 600px;

  min-width: 0;

  margin: 0 auto;

  padding: calc(var(--section-gap) * 2) var(--page-gap);

  border-radius: 28px;

  background: rgba(255,255,255,0.77);

  backdrop-filter: blur(0px) saturate(1.4);

  box-shadow: 0 12px 48px 0 rgba(180,180,200,0.23);

  animation: fade-in-card 1.2s cubic-bezier(.66,0,.42,1) both;

}



@keyframes fade-in-card {

  from {

    opacity: 0;

    transform: translateY(30px) scale(0.99);

  }

  to {

    opacity: 1;

    transform: none;

  }

}



.hero-title {

  font-size: 2.5rem;

  font-weight: 800;

  color: var(--accent);

  text-align: center;

  margin: 0 0 32px 0;

  line-height: 1.14;

  letter-spacing: -0.5px;

  animation: fade-up-text 1.5s cubic-bezier(.49,0,.37,1) both;

}

@keyframes fade-up-text {

  0% { opacity: 0; transform: translateY(30px);}

  80% { opacity: 1; }

  100% {transform: none;}

}



.hero-cta {

  display: inline-block;

  padding: 0.95em 2.8em;

  font-size: 1.2rem;

  font-weight: 700;

  letter-spacing: 0.05em;

  border-radius: var(--radius);

  border: none;

  background: linear-gradient(99deg, var(--primary), var(--primary-hover) 84%);

  color: var(--light);

  box-shadow: 0 3px 22px 0 rgba(255,90,140,0.06), var(--shadow);

  transition: 

    background 0.28s var(--transition),

    transform 0.33s cubic-bezier(.33,1.8,.43,.97),

    box-shadow 0.28s cubic-bezier(.36,.6,.4,.85),

    opacity 0.3s cubic-bezier(.38,.13,.53,1);

  cursor: pointer;

  outline: none;

  opacity: 0.93;

  margin: 0;

  will-change: transform, background, box-shadow, opacity;

  box-sizing: border-box;

  animation: fade-up-cta 1.7s 0.1s cubic-bezier(.24,1,.42,.97) both;

}

@keyframes fade-up-cta {

  from { opacity: 0; transform: translateY(40px) scale(0.97);}

  to { opacity: 1; transform: none;}

}

.hero-cta:hover,

.hero-cta:focus-visible {

  background: linear-gradient(110deg, var(--primary-hover), var(--primary) 70%);

  transform: scale(1.045);

  opacity: 1;

  box-shadow: 0 6px 36px 3px var(--accent-transparent), 0 2px 10px 0 rgba(0,0,0,0.07);

  text-decoration: none;

}

.hero-cta:active {

  transform: scale(0.97);

  opacity: 0.92;

}



@media (max-width: 1024px) {

  .header-inner {

    padding-left: var(--page-gap);

    padding-right: var(--page-gap);

  }

  .hero-content {

    min-width: 0;

    padding: var(--section-gap) var(--page-gap);

    border-radius: 20px;

  }

  .hero-title {

    font-size: 2rem;

  }

}



@media (max-width: 768px) {

  .header-inner {

    padding-top: var(--page-gap-reduced);

    padding-bottom: var(--page-gap-reduced);

    padding-left: var(--page-gap);

    padding-right: var(--page-gap);

  }

  .cozy-header { border-bottom-left-radius: 18px }

  .hero-cozy {

    min-height: 64vh;

    grid-template-columns: 1fr;

    border-radius: 0;

  }

  .hero-bg-img,

  .hero-bg-img img {

    height: 68vh;

    min-height: 340px;

  }

  .hero-content {

    padding: var(--page-gap-reduced);

    margin: 0 0;

    min-width: 0;

    background: rgba(255,255,255,0.89);

    border-radius: 14px;

    box-shadow: 0 6px 24px 0 rgba(180,180,200,0.17);

  }

  .hero-title {

    font-size: 1.35rem;

    margin-bottom: 16px;

  }

  .hero-cta {

    font-size: 1rem;

    padding: 1em 2em;

  }

}



@media (max-width: 480px) {

  .header-inner {

    padding: var(--page-gap-reduced) var(--page-gap-reduced) 0;

  }

  .hero-content {

    padding: var(--page-gap-reduced) 10px;

    border-radius: 8px;

  }

  .hero-title {

    font-size: 1.07rem;

  }

}





html, body {

  width: 100vw;

  max-width: 100vw;

  overflow-x: hidden;

}





.hero-cta:focus-visible {

  outline: 2.5px solid var(--accent);

  outline-offset: 2.5px;

}

/* FOOTER */
.footer-block-love527 {
  background: var(--header);
  padding: var(--page-gap);
  box-shadow: var(--shadow);
  overflow-x: hidden;
}

.footer-block-love527__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--page-gap);
  max-width: 100%;
  flex-wrap: nowrap;
}

.footer-block-love527__logo {
  flex-shrink: 0;
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-block-love527__copyright {
  color: var(--primary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-block-love527__container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--page-gap-reduced);
  }
  .footer-block-love527__copyright {
    white-space: normal;
    margin-top: var(--page-gap-reduced);
  }
}

/* BODY */
.content-block-infocard527 {

  background: var(--light);

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.15));

  box-shadow: var(--shadow), 0 6px 40px 0 rgba(10,0,93,0.06);

  border-radius: var(--radius);

  padding: var(--section-gap);

  max-width: 720px;

  margin: var(--section-gap) auto;

  box-sizing: border-box;

  overflow-x: hidden;

  transition: box-shadow 0.25s cubic-bezier(0.39,0,0.17,0.99), border 0.22s var(--transition);

  backdrop-filter: blur(0.5px);

  display: flex;

  flex-direction: column;

  gap: 0;

}



.content-wrapper-infocard527 {

  width: 100%;

  max-width: 100%;

  display: flex;

  flex-direction: column;

  box-sizing: border-box;

}



.text-content-infocard527 {

  color: var(--dark-default);

  font-size: 1.08rem;

  line-height: 1.65;

  letter-spacing: 0;

  font-weight: 400;

  max-width: 100%;

  padding: 0;

  margin: 0;

  box-sizing: border-box;

}



.text-content-infocard527 h2,

.text-content-infocard527 h3 {

  color: var(--primary);

  font-weight: 700;

  margin-bottom: 1.1em;

  margin-top: 0;

  line-height: 1.18;

  letter-spacing: -0.012em;

}



.text-content-infocard527 h2 {

  font-size: 2rem;

}



.text-content-infocard527 h3 {

  font-size: 1.25rem;

  margin-top: 1.5em;

}



.text-content-infocard527 p {

  margin: 1.45em 0 1.55em 0;

}



.text-content-infocard527 ul,

.text-content-infocard527 ol {

  margin: 1em 0 1.5em 1.6em;

  padding: 0;

  list-style-position: outside;

  color: var(--dark-muted);

  font-size: 1em;

  line-height: 1.4;

}



.text-content-infocard527 ul {

  list-style-type: disc;

}



.text-content-infocard527 ol {

  list-style-type: decimal;

}



.text-content-infocard527 li {

  margin: 0.18em 0 0.18em 0;

  padding: 0;

}



.text-content-infocard527 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.22s var(--transition);

  word-break: break-all;

}

.text-content-infocard527 a:hover,

.text-content-infocard527 a:focus {

  color: var(--accent-hover);

  text-decoration: none;

}



.text-content-infocard527 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0 1.5em 0;

  overflow-x: auto;

  display: block;

}



.text-content-infocard527 thead {

  background: var(--accent-transparent);

}



.text-content-infocard527 th,

.text-content-infocard527 td {

  border: 1px solid var(--accent-transparent, rgba(171,161,251,0.18));

  padding: 0.6em 1em;

  text-align: left;

  color: var(--dark-default);

  font-size: 0.98em;

}



.text-content-infocard527 th {

  font-weight: 600;

  color: var(--accent);

}



.text-content-infocard527 b, .text-content-infocard527 strong {

  font-weight: 600;

  color: var(--primary);

}

.text-content-infocard527 i, .text-content-infocard527 em {

  font-style: italic;

}



@media (max-width: 1024px) {

  .content-block-infocard527 {

    padding: calc(var(--section-gap) * 0.7);

    max-width: 96vw;

  }

  .text-content-infocard527 h2 {

    font-size: 1.5rem;

  }

}



@media (max-width: 768px) {

  .content-block-infocard527 {

    padding: calc(var(--section-gap) * 0.55);

    margin: var(--page-gap-reduced) auto;

    max-width: 99vw;

    border-radius: calc(var(--radius) * 1.5);

    box-shadow: 0 2px 16px rgba(10,0,93,0.10);

  }

  .text-content-infocard527 {

    font-size: 0.97rem;

  }

  .text-content-infocard527 h2 {

    font-size: 1.13rem;

    margin-bottom: .85em;

  }

}





.content-block-infocard527, .text-content-infocard527, .content-wrapper-infocard527 {

  min-width: 0;

  max-width: 100vw;

}

/* BODY1 */
.body-splitWideLeft {

  background: var(--section-bg, var(--background));

  box-shadow: var(--shadow);

  padding: var(--section-gap);

  overflow-x: hidden;

  border-radius: var(--radius);

}



.content-block-wideleft876 {

  box-sizing: border-box;

}



.content-wrapper-elegant843 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: var(--section-gap);

  max-width: 1200px;

  margin: 0 auto;

  width: 100%;

}



.content-image--flare295 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 24px 0 rgba(40, 20, 70, 0.10);

  backdrop-filter: blur(0.5px);

  background: var(--accent-transparent, rgba(171,161,251,0.13));

}



.content-image--flare295 img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  border-radius: calc(var(--radius) * 2);

  object-fit: cover;

}



.content-grid-wideleft877 {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: var(--page-gap);

  min-width: 0;

  box-sizing: border-box;

}





.text-content--spark209 {

  color: var(--dark-default, #24242a);

  font-size: 1.09rem;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  line-height: 1.6;

  letter-spacing: 0.01em;

  max-width: 40em;

  font-weight: 400;

  margin-bottom: 12px;

}

.text-content--spark209 h2, 

.text-content--spark209 h3 {

  font-weight: 700;

  margin: 0 0 0.5em 0;

  letter-spacing: -0.01em;

  line-height: 1.15;

  color: var(--accent, #0a005d);

}

.text-content--spark209 h2 { font-size: 2rem; }

.text-content--spark209 h3 { font-size: 1.25rem; }



.text-content--spark209 p {

  margin: 0 0 1em 0;

}



.text-content--spark209 ul, 

.text-content--spark209 ol {

  padding-left: 1.4em;

  margin: 0 0 1em 0;

}

.text-content--spark209 ul li {

  list-style: disc inside;

  margin-bottom: 0.35em;

}

.text-content--spark209 ol li {

  list-style: decimal inside;

  margin-bottom: 0.35em;

}



.text-content--spark209 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark209 a:hover,

.text-content--spark209 a:focus {

  color: var(--primary-hover);

}



.text-content--spark209 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.06);

  margin-bottom: 1em;

  overflow-x: auto;

  display: block;

}

.text-content--spark209 th,

.text-content--spark209 td {

  padding: 0.5em 1em;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  font-size: 0.95em;

  text-align: left;

}

.text-content--spark209 thead th {

  background: var(--accent-transparent, rgba(171,161,251,0.1));

  color: var(--dark);

  font-weight: 600;

}





.cta-button--soft632.button {

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 8px 0 rgba(149, 24, 48, 0.08);

  font-weight: 600;

  font-size: 1.126rem;

  padding: 12px 32px;

  transition: 

    background var(--transition), 

    box-shadow var(--transition),

    transform 0.18s cubic-bezier(.32,1.56,.56,1),

    color var(--transition);

  display: inline-block;

  max-width: max-content;

  border: none;

  outline: none;

  cursor: pointer;

  margin-top: 12px;

  letter-spacing: .02em;

}

.cta-button--soft632.button:hover, 

.cta-button--soft632.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 8px 32px 0 rgba(252,101,131,0.14);

  transform: translateY(-3px) scale(1.025);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    gap: var(--page-gap);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap);

  }

  .content-grid-wideleft877 {

    align-items: flex-start;

  }

}



@media (max-width: 768px) {

  .body-splitWideLeft {

    padding: var(--page-gap);

  }

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    max-width: 100%;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap-reduced);

    max-width: 100vw;

    min-width: 0;

  }

  .content-grid-wideleft877,

  .text-content--spark209 {

    max-width: 100vw;

    min-width: 0;

  }

  .cta-button--soft632.button {

    font-size: 1rem;

    padding: 12px 24px;

    margin-top: 8px;

  }

}

/* BODY2 */
.content-block-visualRight-flex62 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 48px 0;

  overflow-x: hidden;

  max-width: 100%;

}



.content-wrapper-blend62 {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 56px;

  max-width: 1160px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0 32px;

}



.text-content--spark62 {

  flex: 1 1 0%;

  max-width: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  min-width: 0;

}



.text-content--spark62 .text-content {

  color: var(--dark);

  font-family: inherit;

  line-height: 1.55;

  font-size: 1.12rem;

  letter-spacing: 0.01em;

  display: flex;

  flex-direction: column;

  gap: 20px;

}





.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 0.6em;

  line-height: 1.18;

}

.text-content--spark62 .text-content h2 {

  font-size: 2rem;

}

.text-content--spark62 .text-content h3 {

  font-size: 1.37rem;

}





.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin-left: 1.2em;

  padding-left: 0.4em;

  color: var(--dark-muted);

  font-size: 1em;

  gap: 0.5em;

  display: flex;

  flex-direction: column;

}

.text-content--spark62 .text-content li {

  margin-bottom: 0.4em;

  position: relative;

  line-height: 1.6;

}

.text-content--spark62 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--spark62 .text-content ol li {

  color: var(--primary);

}





.text-content--spark62 .text-content a {

  color: var(--accent);

  text-decoration: underline dotted;

  transition: color 0.22s;

}

.text-content--spark62 .text-content a:hover,

.text-content--spark62 .text-content a:focus {

  color: var(--accent-hover);

  outline: none;

}





.text-content--spark62 .text-content table {

  width: 100%;

  border-collapse: collapse;

  background: var(--light);

  font-size: 0.97em;

  box-shadow: 0 1px 4px rgba(10,0,93,0.05);

  border-radius: var(--radius);

  overflow-x: auto;

  margin: 12px 0;

  display: block;

}

.text-content--spark62 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 8px 13px;

  border: 1px solid var(--accent-transparent);

  text-align: left;

  color: var(--dark);

}

.text-content--spark62 .text-content th {

  font-weight: 600;

}





.text-content--spark62 .text-content b, 

.text-content--spark62 .text-content strong {

  color: var(--primary);

  font-weight: 600;

}

.text-content--spark62 .text-content i, 

.text-content--spark62 .text-content em {

  color: var(--dark-muted);

}





.cta-button--soft62.button {

  display: inline-block;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.04rem;

  box-shadow: 0 3px 16px 0 rgba(149,24,48,0.12);

  cursor: pointer;

  outline: none;

  transition: var(--transition), box-shadow 0.1s;

  margin-top: 12px;

  max-width: max-content;

  min-width: 120px;

  letter-spacing: 0.01em;

  position: relative;

}

.cta-button--soft62.button:hover,

.cta-button--soft62.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.015);

  box-shadow: 0 6px 24px 0 rgba(149,24,48,0.22);

}





.content-image--flare62 {

  flex: 1 1 0%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  height: 100%;

  position: relative;

  z-index: 1;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 2px 24px var(--accent-transparent);

  backdrop-filter: blur(0.5px);

  

}



.content-image--flare62 > * {

  display: block;

  max-width: 100%;

  width: 100%;

  border-radius: var(--radius);

  object-fit: cover;

  min-height: 240px;

  box-shadow: none;

}





@media (max-width: 1024px) {

  .content-wrapper-blend62 {

    gap: 32px;

    padding: 0 14px;

  }

  .text-content--spark62 {

    max-width: 420px;

    gap: 22px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend62 {

    flex-direction: column;

    gap: 26px;

    align-items: stretch;

    padding: 0 10px;

  }

  .text-content--spark62,

  .content-image--flare62 {

    max-width: 100%;

    width: 100%;

  }

  .content-image--flare62 {

    margin-top: 8px;

    margin-bottom: 0;

  }

  .content-image--flare62 > * {

    min-height: 180px;

    max-height: 340px;

  }

}



@media (max-width: 480px) {

  .content-block-visualRight-flex62 {

    padding: 20px 0;

  }

  .text-content--spark62 {

    gap: 14px;

  }

  .cta-button--soft62.button {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: 90px;

  }

  .content-image--flare62 > * {

    min-height: 120px;

    max-height: 220px;

  }

}





.content-block-visualRight-flex62, .content-wrapper-blend62, .text-content--spark62, .content-image--flare62, .text-content--spark62 .text-content, .cta-button--soft62.button {

  box-sizing: border-box;

}

/* BODY3 */
.body-splitWideLeft {

  background: var(--section-bg, var(--background));

  box-shadow: var(--shadow);

  padding: var(--section-gap);

  overflow-x: hidden;

  border-radius: var(--radius);

}



.content-block-wideleft876 {

  box-sizing: border-box;

}



.content-wrapper-elegant843 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: var(--section-gap);

  max-width: 1200px;

  margin: 0 auto;

  width: 100%;

}



.content-image--flare295 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 24px 0 rgba(40, 20, 70, 0.10);

  backdrop-filter: blur(0.5px);

  background: var(--accent-transparent, rgba(171,161,251,0.13));

}



.content-image--flare295 img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  border-radius: calc(var(--radius) * 2);

  object-fit: cover;

}



.content-grid-wideleft877 {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: var(--page-gap);

  min-width: 0;

  box-sizing: border-box;

}





.text-content--spark209 {

  color: var(--dark-default, #24242a);

  font-size: 1.09rem;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  line-height: 1.6;

  letter-spacing: 0.01em;

  max-width: 40em;

  font-weight: 400;

  margin-bottom: 12px;

}

.text-content--spark209 h2, 

.text-content--spark209 h3 {

  font-weight: 700;

  margin: 0 0 0.5em 0;

  letter-spacing: -0.01em;

  line-height: 1.15;

  color: var(--accent, #0a005d);

}

.text-content--spark209 h2 { font-size: 2rem; }

.text-content--spark209 h3 { font-size: 1.25rem; }



.text-content--spark209 p {

  margin: 0 0 1em 0;

}



.text-content--spark209 ul, 

.text-content--spark209 ol {

  padding-left: 1.4em;

  margin: 0 0 1em 0;

}

.text-content--spark209 ul li {

  list-style: disc inside;

  margin-bottom: 0.35em;

}

.text-content--spark209 ol li {

  list-style: decimal inside;

  margin-bottom: 0.35em;

}



.text-content--spark209 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark209 a:hover,

.text-content--spark209 a:focus {

  color: var(--primary-hover);

}



.text-content--spark209 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.06);

  margin-bottom: 1em;

  overflow-x: auto;

  display: block;

}

.text-content--spark209 th,

.text-content--spark209 td {

  padding: 0.5em 1em;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  font-size: 0.95em;

  text-align: left;

}

.text-content--spark209 thead th {

  background: var(--accent-transparent, rgba(171,161,251,0.1));

  color: var(--dark);

  font-weight: 600;

}





.cta-button--soft632.button {

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 8px 0 rgba(149, 24, 48, 0.08);

  font-weight: 600;

  font-size: 1.126rem;

  padding: 12px 32px;

  transition: 

    background var(--transition), 

    box-shadow var(--transition),

    transform 0.18s cubic-bezier(.32,1.56,.56,1),

    color var(--transition);

  display: inline-block;

  max-width: max-content;

  border: none;

  outline: none;

  cursor: pointer;

  margin-top: 12px;

  letter-spacing: .02em;

}

.cta-button--soft632.button:hover, 

.cta-button--soft632.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 8px 32px 0 rgba(252,101,131,0.14);

  transform: translateY(-3px) scale(1.025);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    gap: var(--page-gap);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap);

  }

  .content-grid-wideleft877 {

    align-items: flex-start;

  }

}



@media (max-width: 768px) {

  .body-splitWideLeft {

    padding: var(--page-gap);

  }

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    max-width: 100%;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap-reduced);

    max-width: 100vw;

    min-width: 0;

  }

  .content-grid-wideleft877,

  .text-content--spark209 {

    max-width: 100vw;

    min-width: 0;

  }

  .cta-button--soft632.button {

    font-size: 1rem;

    padding: 12px 24px;

    margin-top: 8px;

  }

}

/* BODY4 */
.content-block-visualRight-flex62 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 48px 0;

  overflow-x: hidden;

  max-width: 100%;

}



.content-wrapper-blend62 {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 56px;

  max-width: 1160px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0 32px;

}



.text-content--spark62 {

  flex: 1 1 0%;

  max-width: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  min-width: 0;

}



.text-content--spark62 .text-content {

  color: var(--dark);

  font-family: inherit;

  line-height: 1.55;

  font-size: 1.12rem;

  letter-spacing: 0.01em;

  display: flex;

  flex-direction: column;

  gap: 20px;

}





.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 0.6em;

  line-height: 1.18;

}

.text-content--spark62 .text-content h2 {

  font-size: 2rem;

}

.text-content--spark62 .text-content h3 {

  font-size: 1.37rem;

}





.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin-left: 1.2em;

  padding-left: 0.4em;

  color: var(--dark-muted);

  font-size: 1em;

  gap: 0.5em;

  display: flex;

  flex-direction: column;

}

.text-content--spark62 .text-content li {

  margin-bottom: 0.4em;

  position: relative;

  line-height: 1.6;

}

.text-content--spark62 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--spark62 .text-content ol li {

  color: var(--primary);

}





.text-content--spark62 .text-content a {

  color: var(--accent);

  text-decoration: underline dotted;

  transition: color 0.22s;

}

.text-content--spark62 .text-content a:hover,

.text-content--spark62 .text-content a:focus {

  color: var(--accent-hover);

  outline: none;

}





.text-content--spark62 .text-content table {

  width: 100%;

  border-collapse: collapse;

  background: var(--light);

  font-size: 0.97em;

  box-shadow: 0 1px 4px rgba(10,0,93,0.05);

  border-radius: var(--radius);

  overflow-x: auto;

  margin: 12px 0;

  display: block;

}

.text-content--spark62 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 8px 13px;

  border: 1px solid var(--accent-transparent);

  text-align: left;

  color: var(--dark);

}

.text-content--spark62 .text-content th {

  font-weight: 600;

}





.text-content--spark62 .text-content b, 

.text-content--spark62 .text-content strong {

  color: var(--primary);

  font-weight: 600;

}

.text-content--spark62 .text-content i, 

.text-content--spark62 .text-content em {

  color: var(--dark-muted);

}





.cta-button--soft62.button {

  display: inline-block;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.04rem;

  box-shadow: 0 3px 16px 0 rgba(149,24,48,0.12);

  cursor: pointer;

  outline: none;

  transition: var(--transition), box-shadow 0.1s;

  margin-top: 12px;

  max-width: max-content;

  min-width: 120px;

  letter-spacing: 0.01em;

  position: relative;

}

.cta-button--soft62.button:hover,

.cta-button--soft62.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.015);

  box-shadow: 0 6px 24px 0 rgba(149,24,48,0.22);

}





.content-image--flare62 {

  flex: 1 1 0%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  height: 100%;

  position: relative;

  z-index: 1;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 2px 24px var(--accent-transparent);

  backdrop-filter: blur(0.5px);

  

}



.content-image--flare62 > * {

  display: block;

  max-width: 100%;

  width: 100%;

  border-radius: var(--radius);

  object-fit: cover;

  min-height: 240px;

  box-shadow: none;

}





@media (max-width: 1024px) {

  .content-wrapper-blend62 {

    gap: 32px;

    padding: 0 14px;

  }

  .text-content--spark62 {

    max-width: 420px;

    gap: 22px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend62 {

    flex-direction: column;

    gap: 26px;

    align-items: stretch;

    padding: 0 10px;

  }

  .text-content--spark62,

  .content-image--flare62 {

    max-width: 100%;

    width: 100%;

  }

  .content-image--flare62 {

    margin-top: 8px;

    margin-bottom: 0;

  }

  .content-image--flare62 > * {

    min-height: 180px;

    max-height: 340px;

  }

}



@media (max-width: 480px) {

  .content-block-visualRight-flex62 {

    padding: 20px 0;

  }

  .text-content--spark62 {

    gap: 14px;

  }

  .cta-button--soft62.button {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: 90px;

  }

  .content-image--flare62 > * {

    min-height: 120px;

    max-height: 220px;

  }

}





.content-block-visualRight-flex62, .content-wrapper-blend62, .text-content--spark62, .content-image--flare62, .text-content--spark62 .text-content, .cta-button--soft62.button {

  box-sizing: border-box;

}

/* BODY5 */
.body-splitWideLeft {

  background: var(--section-bg, var(--background));

  box-shadow: var(--shadow);

  padding: var(--section-gap);

  overflow-x: hidden;

  border-radius: var(--radius);

}



.content-block-wideleft876 {

  box-sizing: border-box;

}



.content-wrapper-elegant843 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: var(--section-gap);

  max-width: 1200px;

  margin: 0 auto;

  width: 100%;

}



.content-image--flare295 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 24px 0 rgba(40, 20, 70, 0.10);

  backdrop-filter: blur(0.5px);

  background: var(--accent-transparent, rgba(171,161,251,0.13));

}



.content-image--flare295 img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  border-radius: calc(var(--radius) * 2);

  object-fit: cover;

}



.content-grid-wideleft877 {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: var(--page-gap);

  min-width: 0;

  box-sizing: border-box;

}





.text-content--spark209 {

  color: var(--dark-default, #24242a);

  font-size: 1.09rem;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  line-height: 1.6;

  letter-spacing: 0.01em;

  max-width: 40em;

  font-weight: 400;

  margin-bottom: 12px;

}

.text-content--spark209 h2, 

.text-content--spark209 h3 {

  font-weight: 700;

  margin: 0 0 0.5em 0;

  letter-spacing: -0.01em;

  line-height: 1.15;

  color: var(--accent, #0a005d);

}

.text-content--spark209 h2 { font-size: 2rem; }

.text-content--spark209 h3 { font-size: 1.25rem; }



.text-content--spark209 p {

  margin: 0 0 1em 0;

}



.text-content--spark209 ul, 

.text-content--spark209 ol {

  padding-left: 1.4em;

  margin: 0 0 1em 0;

}

.text-content--spark209 ul li {

  list-style: disc inside;

  margin-bottom: 0.35em;

}

.text-content--spark209 ol li {

  list-style: decimal inside;

  margin-bottom: 0.35em;

}



.text-content--spark209 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark209 a:hover,

.text-content--spark209 a:focus {

  color: var(--primary-hover);

}



.text-content--spark209 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.06);

  margin-bottom: 1em;

  overflow-x: auto;

  display: block;

}

.text-content--spark209 th,

.text-content--spark209 td {

  padding: 0.5em 1em;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  font-size: 0.95em;

  text-align: left;

}

.text-content--spark209 thead th {

  background: var(--accent-transparent, rgba(171,161,251,0.1));

  color: var(--dark);

  font-weight: 600;

}





.cta-button--soft632.button {

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 8px 0 rgba(149, 24, 48, 0.08);

  font-weight: 600;

  font-size: 1.126rem;

  padding: 12px 32px;

  transition: 

    background var(--transition), 

    box-shadow var(--transition),

    transform 0.18s cubic-bezier(.32,1.56,.56,1),

    color var(--transition);

  display: inline-block;

  max-width: max-content;

  border: none;

  outline: none;

  cursor: pointer;

  margin-top: 12px;

  letter-spacing: .02em;

}

.cta-button--soft632.button:hover, 

.cta-button--soft632.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 8px 32px 0 rgba(252,101,131,0.14);

  transform: translateY(-3px) scale(1.025);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    gap: var(--page-gap);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap);

  }

  .content-grid-wideleft877 {

    align-items: flex-start;

  }

}



@media (max-width: 768px) {

  .body-splitWideLeft {

    padding: var(--page-gap);

  }

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    max-width: 100%;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap-reduced);

    max-width: 100vw;

    min-width: 0;

  }

  .content-grid-wideleft877,

  .text-content--spark209 {

    max-width: 100vw;

    min-width: 0;

  }

  .cta-button--soft632.button {

    font-size: 1rem;

    padding: 12px 24px;

    margin-top: 8px;

  }

}

/* BODY6 */
.content-block-visualRight-flex62 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 48px 0;

  overflow-x: hidden;

  max-width: 100%;

}



.content-wrapper-blend62 {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 56px;

  max-width: 1160px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0 32px;

}



.text-content--spark62 {

  flex: 1 1 0%;

  max-width: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  min-width: 0;

}



.text-content--spark62 .text-content {

  color: var(--dark);

  font-family: inherit;

  line-height: 1.55;

  font-size: 1.12rem;

  letter-spacing: 0.01em;

  display: flex;

  flex-direction: column;

  gap: 20px;

}





.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 0.6em;

  line-height: 1.18;

}

.text-content--spark62 .text-content h2 {

  font-size: 2rem;

}

.text-content--spark62 .text-content h3 {

  font-size: 1.37rem;

}





.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin-left: 1.2em;

  padding-left: 0.4em;

  color: var(--dark-muted);

  font-size: 1em;

  gap: 0.5em;

  display: flex;

  flex-direction: column;

}

.text-content--spark62 .text-content li {

  margin-bottom: 0.4em;

  position: relative;

  line-height: 1.6;

}

.text-content--spark62 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--spark62 .text-content ol li {

  color: var(--primary);

}





.text-content--spark62 .text-content a {

  color: var(--accent);

  text-decoration: underline dotted;

  transition: color 0.22s;

}

.text-content--spark62 .text-content a:hover,

.text-content--spark62 .text-content a:focus {

  color: var(--accent-hover);

  outline: none;

}





.text-content--spark62 .text-content table {

  width: 100%;

  border-collapse: collapse;

  background: var(--light);

  font-size: 0.97em;

  box-shadow: 0 1px 4px rgba(10,0,93,0.05);

  border-radius: var(--radius);

  overflow-x: auto;

  margin: 12px 0;

  display: block;

}

.text-content--spark62 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 8px 13px;

  border: 1px solid var(--accent-transparent);

  text-align: left;

  color: var(--dark);

}

.text-content--spark62 .text-content th {

  font-weight: 600;

}





.text-content--spark62 .text-content b, 

.text-content--spark62 .text-content strong {

  color: var(--primary);

  font-weight: 600;

}

.text-content--spark62 .text-content i, 

.text-content--spark62 .text-content em {

  color: var(--dark-muted);

}





.cta-button--soft62.button {

  display: inline-block;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.04rem;

  box-shadow: 0 3px 16px 0 rgba(149,24,48,0.12);

  cursor: pointer;

  outline: none;

  transition: var(--transition), box-shadow 0.1s;

  margin-top: 12px;

  max-width: max-content;

  min-width: 120px;

  letter-spacing: 0.01em;

  position: relative;

}

.cta-button--soft62.button:hover,

.cta-button--soft62.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.015);

  box-shadow: 0 6px 24px 0 rgba(149,24,48,0.22);

}





.content-image--flare62 {

  flex: 1 1 0%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  height: 100%;

  position: relative;

  z-index: 1;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 2px 24px var(--accent-transparent);

  backdrop-filter: blur(0.5px);

  

}



.content-image--flare62 > * {

  display: block;

  max-width: 100%;

  width: 100%;

  border-radius: var(--radius);

  object-fit: cover;

  min-height: 240px;

  box-shadow: none;

}





@media (max-width: 1024px) {

  .content-wrapper-blend62 {

    gap: 32px;

    padding: 0 14px;

  }

  .text-content--spark62 {

    max-width: 420px;

    gap: 22px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend62 {

    flex-direction: column;

    gap: 26px;

    align-items: stretch;

    padding: 0 10px;

  }

  .text-content--spark62,

  .content-image--flare62 {

    max-width: 100%;

    width: 100%;

  }

  .content-image--flare62 {

    margin-top: 8px;

    margin-bottom: 0;

  }

  .content-image--flare62 > * {

    min-height: 180px;

    max-height: 340px;

  }

}



@media (max-width: 480px) {

  .content-block-visualRight-flex62 {

    padding: 20px 0;

  }

  .text-content--spark62 {

    gap: 14px;

  }

  .cta-button--soft62.button {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: 90px;

  }

  .content-image--flare62 > * {

    min-height: 120px;

    max-height: 220px;

  }

}





.content-block-visualRight-flex62, .content-wrapper-blend62, .text-content--spark62, .content-image--flare62, .text-content--spark62 .text-content, .cta-button--soft62.button {

  box-sizing: border-box;

}

/* BODY7 */
.body-splitWideLeft {

  background: var(--section-bg, var(--background));

  box-shadow: var(--shadow);

  padding: var(--section-gap);

  overflow-x: hidden;

  border-radius: var(--radius);

}



.content-block-wideleft876 {

  box-sizing: border-box;

}



.content-wrapper-elegant843 {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  align-items: center;

  gap: var(--section-gap);

  max-width: 1200px;

  margin: 0 auto;

  width: 100%;

}



.content-image--flare295 {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;

  border-radius: calc(var(--radius) * 2);

  overflow: hidden;

  box-shadow: 0 4px 24px 0 rgba(40, 20, 70, 0.10);

  backdrop-filter: blur(0.5px);

  background: var(--accent-transparent, rgba(171,161,251,0.13));

}



.content-image--flare295 img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  border-radius: calc(var(--radius) * 2);

  object-fit: cover;

}



.content-grid-wideleft877 {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: var(--page-gap);

  min-width: 0;

  box-sizing: border-box;

}





.text-content--spark209 {

  color: var(--dark-default, #24242a);

  font-size: 1.09rem;

  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;

  line-height: 1.6;

  letter-spacing: 0.01em;

  max-width: 40em;

  font-weight: 400;

  margin-bottom: 12px;

}

.text-content--spark209 h2, 

.text-content--spark209 h3 {

  font-weight: 700;

  margin: 0 0 0.5em 0;

  letter-spacing: -0.01em;

  line-height: 1.15;

  color: var(--accent, #0a005d);

}

.text-content--spark209 h2 { font-size: 2rem; }

.text-content--spark209 h3 { font-size: 1.25rem; }



.text-content--spark209 p {

  margin: 0 0 1em 0;

}



.text-content--spark209 ul, 

.text-content--spark209 ol {

  padding-left: 1.4em;

  margin: 0 0 1em 0;

}

.text-content--spark209 ul li {

  list-style: disc inside;

  margin-bottom: 0.35em;

}

.text-content--spark209 ol li {

  list-style: decimal inside;

  margin-bottom: 0.35em;

}



.text-content--spark209 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.2s;

}

.text-content--spark209 a:hover,

.text-content--spark209 a:focus {

  color: var(--primary-hover);

}



.text-content--spark209 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.06);

  margin-bottom: 1em;

  overflow-x: auto;

  display: block;

}

.text-content--spark209 th,

.text-content--spark209 td {

  padding: 0.5em 1em;

  border: 1px solid var(--accent-secondary, #ABA1FB);

  font-size: 0.95em;

  text-align: left;

}

.text-content--spark209 thead th {

  background: var(--accent-transparent, rgba(171,161,251,0.1));

  color: var(--dark);

  font-weight: 600;

}





.cta-button--soft632.button {

  background: var(--primary);

  color: var(--light);

  border-radius: var(--radius);

  box-shadow: 0 2px 8px 0 rgba(149, 24, 48, 0.08);

  font-weight: 600;

  font-size: 1.126rem;

  padding: 12px 32px;

  transition: 

    background var(--transition), 

    box-shadow var(--transition),

    transform 0.18s cubic-bezier(.32,1.56,.56,1),

    color var(--transition);

  display: inline-block;

  max-width: max-content;

  border: none;

  outline: none;

  cursor: pointer;

  margin-top: 12px;

  letter-spacing: .02em;

}

.cta-button--soft632.button:hover, 

.cta-button--soft632.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  box-shadow: 0 8px 32px 0 rgba(252,101,131,0.14);

  transform: translateY(-3px) scale(1.025);

  text-decoration: none;

}



@media (max-width: 1024px) {

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    gap: var(--page-gap);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap);

  }

  .content-grid-wideleft877 {

    align-items: flex-start;

  }

}



@media (max-width: 768px) {

  .body-splitWideLeft {

    padding: var(--page-gap);

  }

  .content-wrapper-elegant843 {

    grid-template-columns: 1fr;

    max-width: 100%;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare295 {

    margin-bottom: var(--page-gap-reduced);

    max-width: 100vw;

    min-width: 0;

  }

  .content-grid-wideleft877,

  .text-content--spark209 {

    max-width: 100vw;

    min-width: 0;

  }

  .cta-button--soft632.button {

    font-size: 1rem;

    padding: 12px 24px;

    margin-top: 8px;

  }

}

/* BODY8 */
.content-block-visualRight-flex62 {

  background: var(--light);

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  padding: 48px 0;

  overflow-x: hidden;

  max-width: 100%;

}



.content-wrapper-blend62 {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 56px;

  max-width: 1160px;

  margin: 0 auto;

  box-sizing: border-box;

  padding: 0 32px;

}



.text-content--spark62 {

  flex: 1 1 0%;

  max-width: 480px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 32px;

  min-width: 0;

}



.text-content--spark62 .text-content {

  color: var(--dark);

  font-family: inherit;

  line-height: 1.55;

  font-size: 1.12rem;

  letter-spacing: 0.01em;

  display: flex;

  flex-direction: column;

  gap: 20px;

}





.text-content--spark62 .text-content h2,

.text-content--spark62 .text-content h3 {

  color: var(--primary);

  font-weight: 700;

  letter-spacing: -0.01em;

  margin-bottom: 0.6em;

  line-height: 1.18;

}

.text-content--spark62 .text-content h2 {

  font-size: 2rem;

}

.text-content--spark62 .text-content h3 {

  font-size: 1.37rem;

}





.text-content--spark62 .text-content ul,

.text-content--spark62 .text-content ol {

  margin-left: 1.2em;

  padding-left: 0.4em;

  color: var(--dark-muted);

  font-size: 1em;

  gap: 0.5em;

  display: flex;

  flex-direction: column;

}

.text-content--spark62 .text-content li {

  margin-bottom: 0.4em;

  position: relative;

  line-height: 1.6;

}

.text-content--spark62 .text-content ul li::marker {

  color: var(--accent);

}

.text-content--spark62 .text-content ol li {

  color: var(--primary);

}





.text-content--spark62 .text-content a {

  color: var(--accent);

  text-decoration: underline dotted;

  transition: color 0.22s;

}

.text-content--spark62 .text-content a:hover,

.text-content--spark62 .text-content a:focus {

  color: var(--accent-hover);

  outline: none;

}





.text-content--spark62 .text-content table {

  width: 100%;

  border-collapse: collapse;

  background: var(--light);

  font-size: 0.97em;

  box-shadow: 0 1px 4px rgba(10,0,93,0.05);

  border-radius: var(--radius);

  overflow-x: auto;

  margin: 12px 0;

  display: block;

}

.text-content--spark62 .text-content thead {

  background: var(--accent-transparent);

}

.text-content--spark62 .text-content th,

.text-content--spark62 .text-content td {

  padding: 8px 13px;

  border: 1px solid var(--accent-transparent);

  text-align: left;

  color: var(--dark);

}

.text-content--spark62 .text-content th {

  font-weight: 600;

}





.text-content--spark62 .text-content b, 

.text-content--spark62 .text-content strong {

  color: var(--primary);

  font-weight: 600;

}

.text-content--spark62 .text-content i, 

.text-content--spark62 .text-content em {

  color: var(--dark-muted);

}





.cta-button--soft62.button {

  display: inline-block;

  padding: 13px 32px;

  background: var(--primary);

  color: var(--light);

  border: none;

  border-radius: var(--radius);

  font-weight: 600;

  font-size: 1.04rem;

  box-shadow: 0 3px 16px 0 rgba(149,24,48,0.12);

  cursor: pointer;

  outline: none;

  transition: var(--transition), box-shadow 0.1s;

  margin-top: 12px;

  max-width: max-content;

  min-width: 120px;

  letter-spacing: 0.01em;

  position: relative;

}

.cta-button--soft62.button:hover,

.cta-button--soft62.button:focus {

  background: var(--primary-hover);

  color: var(--light);

  transform: translateY(-2px) scale(1.015);

  box-shadow: 0 6px 24px 0 rgba(149,24,48,0.22);

}





.content-image--flare62 {

  flex: 1 1 0%;

  min-width: 0;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  height: 100%;

  position: relative;

  z-index: 1;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: 0 2px 24px var(--accent-transparent);

  backdrop-filter: blur(0.5px);

  

}



.content-image--flare62 > * {

  display: block;

  max-width: 100%;

  width: 100%;

  border-radius: var(--radius);

  object-fit: cover;

  min-height: 240px;

  box-shadow: none;

}





@media (max-width: 1024px) {

  .content-wrapper-blend62 {

    gap: 32px;

    padding: 0 14px;

  }

  .text-content--spark62 {

    max-width: 420px;

    gap: 22px;

  }

}

@media (max-width: 768px) {

  .content-wrapper-blend62 {

    flex-direction: column;

    gap: 26px;

    align-items: stretch;

    padding: 0 10px;

  }

  .text-content--spark62,

  .content-image--flare62 {

    max-width: 100%;

    width: 100%;

  }

  .content-image--flare62 {

    margin-top: 8px;

    margin-bottom: 0;

  }

  .content-image--flare62 > * {

    min-height: 180px;

    max-height: 340px;

  }

}



@media (max-width: 480px) {

  .content-block-visualRight-flex62 {

    padding: 20px 0;

  }

  .text-content--spark62 {

    gap: 14px;

  }

  .cta-button--soft62.button {

    font-size: 0.98rem;

    padding: 11px 16px;

    min-width: 90px;

  }

  .content-image--flare62 > * {

    min-height: 120px;

    max-height: 220px;

  }

}





.content-block-visualRight-flex62, .content-wrapper-blend62, .text-content--spark62, .content-image--flare62, .text-content--spark62 .text-content, .cta-button--soft62.button {

  box-sizing: border-box;

}

/* blog/blogpreview1.css */
.bloghero-glowline318 {

  width: 100%;

  max-width: 1080px;

  margin: 0 auto var(--section-gap);

  position: relative;

  border-radius: 2.1em;

  padding: 3.1rem 1.1rem 2.4rem 1.1rem;

  background: linear-gradient(115deg, var(--background) 0%, var(--light) 100%);

  box-shadow: 0 7px 25px var(--shadow);

  text-align: center;

  overflow: hidden;

  z-index: 1;

}



.bloghero-glowline318 .bloghero-glowdecor-glowline318 {

  position: absolute;

  left: 8%; top: 0;

  width: 340px; height: 158px;

  pointer-events: none;

  opacity: 0.58;

  z-index: 0;

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::before,

.bloghero-glowline318 .bloghero-glowdecor-glowline318::after {

  content: "";

  position: absolute;

  border-radius: 50%;

  z-index: 0;

  filter: blur(34px);

  opacity: .57;

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::before {

  left: 0; top: 9px; width: 122px; height: 122px;

  background: radial-gradient(circle at 65% 60%, var(--primary) 60%, transparent 100%);

}

.bloghero-glowline318 .bloghero-glowdecor-glowline318::after {

  right: -2vw; top: 94px; width: 83px; height: 83px;

  background: radial-gradient(circle at 35% 60%, var(--accent-secondary, #ABA1FB) 80%, transparent 100%);

}





.bloghero-glowline318::before {

  content: '';

  display: block;

  position: absolute;

  left: 50%; top: 0;

  transform: translateX(-50%);

  width: 74vw; max-width: 660px; height: 36vw; max-height: 190px;

  background: radial-gradient(circle at 50% 18%, var(--accent) 0%, var(--primary) 32%, transparent 95%);

  opacity: .16;

  filter: blur(18px);

  pointer-events: none;

  z-index: 0;

}





.bloghero-infowrap-glowline318 {

  position: relative;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

}





.bloghero-title-glowline318 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  letter-spacing: -0.02em;

  color: var(--primary);

  line-height: 1.13;

  margin: 0 0 0.6em 0;

  background: linear-gradient(87deg, var(--primary) 45%, var(--accent) 92%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  text-shadow:

    0 4px 22px var(--accent-secondary, #ABA1FB),

    0 1.5px 6px #0003; 

  animation: blogheroFadeTitle318 1.1s cubic-bezier(.16,.95,.19,1.01) both;

  transition: text-shadow .16s;

  position: relative;

}

@keyframes blogheroFadeTitle318 {

  from { opacity: 0; transform: translateY(36px) scale(0.96);}

  to   { opacity: 1; transform: none;}

}





.bloghero-glowline-glowline318 {

  width: 110px;

  height: 5.5px;

  background: linear-gradient(90deg, var(--primary) 18%, var(--accent) 99%);

  margin: 0 auto;

  border-radius: 7px;

  box-shadow: 0 2px 27px var(--accent), 0 0 16px var(--primary);

  opacity: 0;

  transform: scaleX(0.72);

  animation: blogheroGlowLineIn318 1s .55s cubic-bezier(.41,1.45,.29,1) forwards;

  transition: background .2s;

}

@keyframes blogheroGlowLineIn318 {

  from { opacity: 0; transform: scaleX(0.3);}

  80%  { opacity: 1; transform: scaleX(1.18);}

  to   { opacity: 1; transform: scaleX(1);}

}





@media (max-width: 700px) {

  .bloghero-glowline318 {

    padding: 2rem 0.25rem 1.2rem 0.25rem;

    border-radius: 1.1em;

    max-width: 99vw;

  }

  .bloghero-title-glowline318 {

    font-size: var(--font-size-h2);

    margin: 0 0 0.45em 0;

  }

  .bloghero-glowline-glowline318 { width: 55px; height: 2.3px; }

  .bloghero-glowline318 .bloghero-glowdecor-glowline318 { top: -12px; width: 64vw; height: 70px;}

  .bloghero-glowline318 .bloghero-glowdecor-glowline318::before,

  .bloghero-glowline318 .bloghero-glowdecor-glowline318::after { filter: blur(12px);}

}

@media (max-width: 420px) {

  .bloghero-title-glowline318 { font-size: var(--font-size-h3); }

  .bloghero-glowline-glowline318 { width: 31vw; margin: 0 auto; height: 1.2px; }

  .bloghero-glowline318 { padding: .73rem 0.04rem .87rem 0.04rem; }

}

/* blog/blogindex.css */
.category-grid-alpha .category-card {

  position: relative;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border-radius: var(--radius-xl);

  box-shadow: 0 4px 12px var(--shadow);

  background: var(--light);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.category-grid-alpha .category-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 8px 20px var(--shadow);

}





.category-grid-alpha .category-card img {

  width: 100%;

  height: 240px;

  object-fit: cover;

  display: block;

}





.category-grid-alpha .category-info {

  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  align-items: center;

  padding: 1rem;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);

  box-sizing: border-box;

  text-align: center;

}





.category-grid-alpha .category-title {

  color: var(--light);

  font-size: 1.1rem;

  font-weight: 700;

  margin-bottom: 0.5rem;

  z-index: 2;

}

.categories-grid-alpha77 .page-title {

  font-size: 2rem; 

  font-weight: 700;

  color: var(--primary);

  text-align: center;

  margin: 40px 0 30px 0; 

  position: relative;

  z-index: 2;

}



.categories-grid-alpha77 .category-grid-alpha {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: var(--page-gap);

  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  box-sizing: border-box;

}





.category-grid-alpha .category-rating::before {

  content: "★";

  color: var(--accent);

  font-size: 1.2rem;

  display: inline-block;

  margin-bottom: 0.75rem;

  transition: transform 0.3s ease;

}



.category-grid-alpha .category-card:hover .category-rating::before {

  transform: scale(1.2) rotate(10deg);

}





.category-grid-alpha .category-btn {

  display: block;

  width: 100%;

  padding: 0.75rem 1rem;

  background: var(--accent);

  color: var(--light);

  font-weight: 600;

  text-align: center;

  text-decoration: none;

  border-radius: 0 0 var(--radius-xl) var(--radius-xl);

  transition: background 0.3s ease;

}



.category-grid-alpha .category-btn:hover {

  background: var(--primary);

}

/* 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/bloglink7.css */
.linksdot-float713 {

  width: 100%;

  max-width: 340px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 2;

  background: none;

}



.linksdot-float713 .linksdot-title-float713 {

  font-size: 1.15rem;

  font-weight: 900;

  color: var(--accent);

  margin-bottom: .93em;

  text-align: left;

  letter-spacing: -0.01em;

  padding-left: 13px;

  position: relative;

}

.linksdot-float713 .linksdot-title-float713::before {

  content: '';

  position: absolute;

  left: 0; top: 8px;

  width: 5px; height: 23px;

  background: linear-gradient(130deg, var(--primary), var(--accent-secondary));

  border-radius: 6px;

  opacity: 0.56;

}



.linksdot-float713 .linksdot-wrap-float713 {

  position: relative;

  display: flex;

  flex-direction: column;

  gap: 19px;

  z-index: 2;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

  display: flex;

  flex-direction: column;

  gap: 15px;

  position: relative;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  display: flex;

  align-items: center;

  position: relative;

  border-radius: 17px;

  background: var(--light);

  box-shadow: 0 5px 23px 0 rgba(80,40,160,.11);

  border: 1.6px solid var(--accent-secondary, #ABA1FB);

  overflow: hidden;

  min-height: 62px;

  padding: 0;

  margin-left: 0;

  text-decoration: none;

  color: var(--dark);

  font-weight: 700;

  transition: box-shadow .32s var(--transition), transform .23s var(--transition), border-color .18s;

  will-change: transform;

  z-index: 3;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus {

  box-shadow: 0 18px 38px 0 var(--accent-transparent), 0 0 0 5px var(--primary-hover);

  transform: translateY(-4px) scale(1.022) rotate(-1.2deg);

  border-color: var(--primary);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus-visible {

  outline: 2px solid var(--primary-hover);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::before {

  content: '';

  position: absolute;

  left: -17px; top: 50%;

  transform: translateY(-50%);

  width: 27px;

  height: 27px;

  background: radial-gradient(circle at 40% 70%, var(--primary) 57%, var(--accent) 95%);

  filter: blur(0.8px);

  border-radius: 100px;

  opacity: .44;

  z-index: 1;

  box-shadow: 0 0 6px 0 var(--accent-secondary, #ABA1FB);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

  width: 42px; height: 42px;

  border-radius: 15px;

  object-fit: cover;

  background: var(--accent-transparent);

  margin: 10px 0 10px 18px;

  box-shadow: 0 1px 8px 0 var(--accent-transparent);

  position: relative;

  z-index: 2;

  transition: filter .22s var(--transition), transform .18s var(--transition);

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:hover img,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a:focus img {

  filter: brightness(1.07) saturate(1.1) grayscale(0%);

  transform: rotate(1deg) scale(1.07);

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

  font-size: 1.07rem;

  line-height: 1.1;

  padding: 13px 13px 13px 9px;

  letter-spacing: 0.015em;

  position: relative;

  z-index: 3;

  min-width: 0;

}



.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a span,

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a strong {

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}





.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a::after {

  content: '';

  position: absolute;

  left: 0; top: 0;

  width: 100%; height: 27px;

  background: linear-gradient(180deg, var(--accent-transparent), transparent 85%);

  pointer-events: none;

  opacity: .29;

  z-index: 9;

  border-radius: 17px 17px 0 0;

}





.linksdot-float713 .floating-dot-float713 {

  position: absolute;

  border-radius: 50%;

  background: var(--accent-secondary, #ABA1FB);

  opacity: 0.21;

  filter: blur(3.5px);

  z-index: 0;

  animation: floatDot713 11s infinite alternate ease-in-out;

  pointer-events: none;

}

.linksdot-float713 .fdot1 {

  left: -13px; top: 3px; width: 41px; height: 41px;

  background: var(--primary);

  animation-delay: 0s;

}

.linksdot-float713 .fdot2 {

  right: -11px; top: 42px; width: 27px; height: 27px;

  background: var(--accent);

  animation-delay: 3s;

}

.linksdot-float713 .fdot3 {

  left: -20px; bottom: 23px; width: 31px; height: 31px;

  background: var(--accent-secondary, #ABA1FB);

  animation-delay: 6.2s;

}

.linksdot-float713 .fdot4 {

  right: -18px; bottom: 12px; width: 36px; height: 36px;

  background: var(--primary);

  animation-delay: 7.8s;

}



@keyframes floatDot713 {

  0% { transform: translateY(0) scale(1);}

  70% { filter: blur(2.5px);}

  100% { transform: translateY(-23px) scale(1.14);}

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .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);

}

.linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image:hover {

    background: none;

}



@media (max-width: 500px) {

  .linksdot-float713 {

    max-width: 99vw;

    border-radius: 8px;

  }

  .linksdot-float713 .linksdot-title-float713 {

    font-size: 1.01rem;

    padding-left: 7px;

  }

  .linksdot-float713 .linksdot-title-float713::before {

    width: 3px; height: 12px; left: 0; top: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 {

    gap: 12px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 {

    gap: 8px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image a {

    font-size: .91rem;

    min-height: 43px;

    padding: 8px 6px 8px 4px;

    border-radius: 14px;

  }

  .linksdot-float713 .linksdot-wrap-float713 .link-item-float713 .with-image img {

    width: 24px; height: 24px; margin: 6px 0 6px 7px;

    border-radius: 5px;

  }

  .linksdot-float713 .floating-dot-float713 {

    width: 19vw !important;

    height: 19vw !important;

  }

  .linksdot-float713 .fdot1 { left: -6vw; top: 3vw;}

  .linksdot-float713 .fdot2 { right: -5vw; top: 12vw;}

  .linksdot-float713 .fdot3 { left: -7vw; bottom: 8vw;}

  .linksdot-float713 .fdot4 { right: -7vw; bottom: 4vw;}

}

/* 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;

  }

}