/* Custom: 1.css */
@import url('https://fonts.googleapis.com/css2?family=Magra:wght@400;700&family=Montserrat:wght@700&family=Spartan:wght@600&family=Ubuntu:wght@400;500;700&display=swap');

@font-face {
  font-style: normal;
  font-weight: normal;
  font-family: "Material Icons";
  font-display: block;
  src: url(":r:icomoon.woff2") format("woff2");
}
header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}
* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: var(--section-gap);
}

body {
 font-family: var(--font-family-main) !important;
 font-weight: var(--font-weight-body) !important;
 font-size: var(--font-size-base) !important;
  background: var(--background);
  color: var(--dark);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  text-decoration: underline;
}
ul, ol {
  margin: 20px 0;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.content-container {
  padding-left: var(--page-gap);
  padding-right: var(--page-gap);
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-container {
    padding-left: var(--page-gap-reduced);
    padding-right: var(--page-gap-reduced);
  }
    section > div > div,
  section > div > div > div {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 20px var(--page-gap-reduced);
  }



  ul, ol {
    padding-left: 16px;
  }
}

.breadcrumbs-section {
  width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    height: 100%;
}

.breadcrumbs-list .breadcrumbs-list-item {
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin: 5px 0;
}

.breadcrumbs-list .breadcrumbs-list-item:last-child {
  color: var(--primary);
}

.breadcrumbs-list .breadcrumbs-list-item a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
}

.breadcrumbs-list .breadcrumbs-list-item a:hover {
  text-decoration: underline;
}

.breadcrumbs-list .breadcrumbs-list-item a::after {
  content: "";
  margin: 0 10px 0 10px;
  border: solid rgba(0, 0, 0, 0.25);
  border-width: 0 2px 2px 0;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  padding: 5px;
  transform: rotate(45deg);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.layout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--section-gap);
  margin: var(--page-gap) auto;
  max-width: 1200px;
}

.main-column {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.sidebar-column {
  position: relative;
}
@media (max-width: 768px) {
 .layout-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar-column {
    grid-row: 1; 
  }

  .main-column {
    grid-row: 2;
  }
}

/* FAQ блок */
details {
  width: 100%;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--primary);
  transition: var(--transition);
  font-family: var(--font-family-main);
}

details[open] {
  background: var(--accent);
}

details summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-heading);
  color: var(--light);
  list-style: none;
  outline: none;
  transition: var(--transition);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  background: var(--primary-hover);
}

details[open] summary {
  background: var(--accent-hover);
}

details div {
  padding: 15px 20px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  color: var(--light);
  background: var(--accent-transparent);
  line-height: 1.6;
}

/* Color scheme: color29 */
:root {
    --primary: #ba55d3;
    --primary-hover: #c670dc;
    --accent: #3cb371;
    --accent-hover: #57c089;
    --accent-secondary: #71cea1;
    --accent-transparent: rgba(60, 179, 113, 0.3);
    --background: #faf0e6;
    --header: #ffffff;
    --shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    --page-gap: 20px;
    --page-gap-reduced: calc(var(--page-gap) / 2);
    --section-gap: 30px;
    --dark: #000000;
    --dark-default: rgba(0, 0, 0, 0.8);
    --dark-muted: rgba(0, 0, 0, 0.4);
    --light: #ffffff;
    --transition: all 0.25s cubic-bezier(0.39, 0, 0.17, 0.99);
    --radius: 4px;
    --font-family-main: 'Inter', sans-serif;
    --font-family-heading: 'Georgia', serif;
    --font-weight-body: 400;
    --font-weight-heading: 700;
    --font-size-base: 16px;
    --font-size-h1: 32px;
    --font-size-h2: 24px;
  }

/* HEADER */
: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-connect847 {

  background: var(--header);

  padding: var(--section-gap);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

  max-width: 100%;

}



.footer-connect-content {

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: var(--section-gap);

}







.footer-connect-socials {

  display: flex;

  gap: var(--page-gap);

  flex: 0 1 auto;

}



.footer-connect-socials a {

  color: var(--accent);

  font-size: 1.6rem;

  transition: color var(--transition), transform var(--transition), opacity var(--transition);

  opacity: 0.85;

  border-radius: 50%;

  padding: 0.5em;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 2px 6px rgba(0,0,0,0.04);

}



.footer-connect-socials a:hover, 

.footer-connect-socials a:focus {

  color: var(--primary-hover);

  transform: scale(1.12);

  opacity: 1;

}



.footer-connect-copyright {

  margin-top: var(--page-gap);

  text-align: left;

  color: var(--accent);

  font-size: 1rem;

  opacity: 0.85;

}



@media (max-width: 600px) {

  .footer-connect-content {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap);

    text-align: center;

  }

  .footer-connect-logo {

    justify-content: center;

    display: flex;

  }

  .footer-connect-socials {

    justify-content: center;

  }

  .footer-connect-copyright {

    text-align: center;

  }

}

/* BODY */
.content-block-heroTop90 {

  width: 100%;

  box-sizing: border-box;

  background: var(--light);

  padding: var(--section-gap);

  display: flex;

  justify-content: center;

  align-items: stretch;

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  overflow-x: hidden;

}

.content-wrapper-glossy990 {

  max-width: 920px;

  width: 100%;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: calc(var(--section-gap) * 0.8);

  align-items: center;

}





.content-image--flare198 {

  width: 100%;

  border-radius: var(--radius) var(--radius) 0 0;

  overflow: hidden;

  box-shadow: 0 2px 16px rgba(10, 0, 93, 0.10);

  backdrop-filter: blur(0.5px);

  margin-bottom: var(--page-gap-reduced);

}

.content-image--flare198 img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: cover;

  border-radius: var(--radius) var(--radius) 0 0;

}





.cta-row-soft520 {

  width: 100%;

  display: flex;

  justify-content: center;

  margin-bottom: var(--page-gap-reduced);

}

.cta-button--soft194 {

  background: var(--primary);

  color: var(--light);

  padding: 14px 32px;

  border-radius: var(--radius);

  font-size: 1.08rem;

  font-weight: 600;

  display: inline-block;

  box-shadow: 0 2px 10px rgba(149, 24, 48, 0.16);

  text-decoration: none;

  transition: var(--transition), box-shadow 0.18s cubic-bezier(0.23,0.82,0.47,0.96);

  cursor: pointer;

  outline: none;

  border: none;

  min-width: max-content;

  letter-spacing: 0.02em;

  position: relative;

}

.cta-button--soft194:hover, .cta-button--soft194:focus {

  background: var(--primary-hover);

  transform: translateY(-2px) scale(1.02);

  box-shadow: 0 8px 24px rgba(149,24,48,0.17);

}

.cta-button--soft194:active {

  transform: scale(0.98);

}





.text-content--spark761 {

  width: 100%;

  color: var(--dark);

  font-size: 1.1rem;

  line-height: 1.6;

  display: block;

  padding: 0 var(--page-gap);

  box-sizing: border-box;

}





.text-content--spark761 h2,

.text-content--spark761 h3 {

  font-weight: 700;

  color: var(--accent);

  margin-top: 0.65em;

  margin-bottom: 0.2em;

  letter-spacing: 0.01em;

  line-height: 1.2;

}



.text-content--spark761 h2 {

  font-size: 2rem;

}

.text-content--spark761 h3 {

  font-size: 1.35rem;

}





.text-content--spark761 p {

  margin: 0.65em 0 0.85em;

  color: var(--dark-default);

}



.text-content--spark761 ul,

.text-content--spark761 ol {

  padding-left: 1.4em;

  margin: 0.25em 0 1em;

}

.text-content--spark761 ul {

  list-style: disc inside;

}

.text-content--spark761 ol {

  list-style: decimal inside;

}

.text-content--spark761 li {

  margin: 0.3em 0;

  color: var(--dark);

}





.text-content--spark761 a {

  color: var(--primary);

  text-decoration: underline;

  transition: color 0.18s cubic-bezier(0.39,0,0.17,0.99);

  word-break: break-word;

}

.text-content--spark761 a:hover,

.text-content--spark761 a:focus {

  color: var(--accent);

}





.text-content--spark761 table {

  width: 100%;

  max-width: 100%;

  border-collapse: collapse;

  margin: var(--page-gap-reduced) 0;

  font-size: 1rem;

  background: var(--accent-transparent);

  border-radius: var(--radius);

  overflow-x: auto;

  display: block;

}

.text-content--spark761 thead {

  background: var(--accent-secondary);

}

.text-content--spark761 th,

.text-content--spark761 td {

  border: 1px solid var(--accent);

  padding: 0.55em 1em;

  text-align: left;

  color: var(--dark);

}

.text-content--spark761 th {

  font-weight: 600;

  color: var(--dark);

}





.text-content--spark761 td ul,

.text-content--spark761 td ol {

  margin: 0.15em 0;

  padding-left: 1.3em;

}





.text-content--spark761 b, 

.text-content--spark761 strong {

  font-weight: 700;

  color: var(--accent);

}

.text-content--spark761 i, 

.text-content--spark761 em {

  font-style: italic;

}





@media (max-width: 1024px) {

  .content-wrapper-glossy990 {

    max-width: 98vw;

    padding: 0;

  }

  .text-content--spark761 {

    font-size: 1rem;

    padding-left: var(--page-gap-reduced);

    padding-right: var(--page-gap-reduced);

  }

}

@media (max-width: 768px) {

  .content-block-heroTop90 {

    padding: var(--page-gap);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    max-width: 100vw;

    padding: 0;

    gap: var(--page-gap);

  }

  .content-image--flare198 {

    margin-bottom: var(--page-gap);

    border-radius: var(--radius);

  }

  .text-content--spark761 {

    padding: 0 var(--page-gap-reduced);

    font-size: 0.98rem;

  }

}

@media (max-width: 480px) {

  .content-block-heroTop90 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

  }

  .content-wrapper-glossy990 {

    gap: var(--page-gap-reduced);

  }

  .cta-row-soft520 {

    margin-bottom: var(--page-gap-reduced);

  }

  .cta-button--soft194 {

    padding: 12px 18px;

    font-size: 1rem;

  }

  .text-content--spark761 {

    padding: 0 4vw;

    font-size: 0.97rem;

  }

  .content-image--flare198 {

    border-radius: var(--radius);

  }

}

/* 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-sparkle947 {

  box-sizing: border-box;

  padding: var(--section-gap);

  background: var(--light);

  box-shadow: var(--shadow);

  border-radius: var(--radius);

  margin: var(--section-gap) auto;

  max-width: 1100px;

  overflow-x: hidden;

  transition: var(--transition);

}



.content-wrapper-balance947 {

  display: flex;

  flex-direction: row;

  align-items: stretch;

  gap: var(--page-gap);

  max-width: 100%;

  box-sizing: border-box;

}



.content-image--flare947 {

  flex: 0 0 320px;

  max-width: 320px;

  min-width: 0;

  display: flex;

  align-items: center;

  border-radius: var(--radius);

  overflow: hidden;

  box-shadow: var(--shadow);

  margin-right: 0;

}



.content-image--flare947 img {

  display: block;

  width: 100%;

  height: auto;

  border-radius: var(--radius);

  object-fit: cover;

  background: var(--background);

}



.text-content--spark947 {

  flex: 1 1 0;

  min-width: 0;

  display: flex;

  flex-direction: column;

  justify-content: center;

  color: var(--dark);

  font-size: 1.15rem;

  line-height: 1.65;

  padding: var(--page-gap) 0;

  transition: var(--transition);

  background: transparent;

}



.text-content--spark947 h2 {

  font-size: 2rem;

  font-weight: 700;

  margin-bottom: 0.5em;

  color: var(--primary);

}



.text-content--spark947 h3 {

  font-size: 1.25rem;

  font-weight: 600;

  margin-bottom: 0.8em;

  color: var(--accent);

}



.text-content--spark947 p {

  margin-bottom: 1em;

  color: var(--dark-default);

}



.text-content--spark947 ul, 

.text-content--spark947 ol {

  padding-left: 1.4em;

  margin-bottom: 1em;

  color: var(--dark-muted);

}



.text-content--spark947 li {

  margin-bottom: 0.5em;

  list-style: disc inside;

}



.text-content--spark947 a {

  color: var(--accent);

  text-decoration: underline;

  transition: color 0.2s;

}



.text-content--spark947 a:hover, 

.text-content--spark947 a:focus {

  color: var(--primary-hover);

}



.text-content--spark947 table {

  width: 100%;

  border-collapse: collapse;

  margin: 1em 0;

  overflow-x: auto;

  display: block;

  font-size: 0.98em;

}



.text-content--spark947 thead {

  background: var(--accent-transparent);

}



.text-content--spark947 th, 

.text-content--spark947 td {

  border: 1px solid var(--accent-secondary);

  padding: 8px 11px;

  text-align: left;

  color: var(--dark);

}



.text-content--spark947 th {

  color: var(--accent);

  font-weight: 600;

}



.text-content--spark947 b,

.text-content--spark947 strong {

  color: var(--primary);

  font-weight: 700;

}



.text-content--spark947 i,

.text-content--spark947 em {

  color: var(--accent);

}



@media (max-width: 1024px) {

  .content-wrapper-balance947 {

    flex-direction: column;

    align-items: stretch;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare947 {

    max-width: 100%;

    margin-bottom: var(--page-gap-reduced);

  }

}





@media (max-width: 768px) {

  .content-block-sparkle947 {

    padding: var(--page-gap-reduced);

    border-radius: var(--radius);

    margin: var(--page-gap) 0;

    max-width: 100%;

  }

  .content-wrapper-balance947 {

    flex-direction: column;

    gap: var(--page-gap-reduced);

  }

  .content-image--flare947 {

    flex: none;

    max-width: 100%;

    min-width: 0;

    margin-bottom: var(--page-gap-reduced);

    box-shadow: var(--shadow);

    border-radius: var(--radius);

  }

  .text-content--spark947 {

    padding: 0.5em 0 0.2em 0;

    font-size: 1.05rem;

  }

}





.content-block-sparkle947,

.content-wrapper-balance947 {

  box-sizing: border-box;

  max-width: 100%;

}

/* blog/blogpreview4.css */
.heroh1-holocloud552 {

  width: 100%;

  max-width: 1100px;

  margin: 0 auto var(--section-gap);

  position: relative;

  background: linear-gradient(120deg, var(--background) 0%, var(--light) 110%);

  box-shadow: 0 7px 37px var(--shadow);

  border-radius: 2.1em;

  padding: 3.1rem 1.2rem 2.2rem 1.2rem;

  text-align: center;

  overflow: hidden;

  z-index: 1;

}





.heroh1-holocloud552 .heroh1-decorcloud-holocloud552 {

  position: absolute;

  left: 50%; top: 0;

  width: 400px; height: 230px;

  transform: translateX(-53%);

  background:

    radial-gradient(ellipse 70% 60% at 70% 30%, var(--primary) 33%, transparent 100%),

    radial-gradient(ellipse 40% 22% at 21% 80%, var(--accent-secondary, #ABA1FB) 70%, transparent 100%),

    radial-gradient(ellipse 88% 70% at 80% 80%, var(--accent) 70%, transparent 100%);

  opacity: 0.18;

  filter: blur(28px) saturate(1.11) brightness(1.05);

  pointer-events: none;

  z-index: 0;

  animation: cloudmove552 10s infinite alternate cubic-bezier(.53,0,.22,1);

}

@keyframes cloudmove552 {

  from { filter: blur(24px) saturate(1.16);}

  to   { filter: blur(33px) saturate(1.25);}

}





.heroh1-holocloud552 .heroh1-title-holocloud552 {

  font-size: var(--font-size-h1);

  font-weight: 900;

  letter-spacing: -0.01em;

  line-height: 1.12;

  margin: 0;

  padding: 0.18em 0.12em;

  color: #fff;

  background: linear-gradient(90deg, var(--primary) 10%, var(--accent) 60%, var(--accent-secondary, #ABA1FB) 89%, #fff 100%);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  filter: drop-shadow(0 9px 22px var(--primary) ) drop-shadow(0 2px 14px var(--accent-secondary, #ABA1FB));

  transition: filter .18s, text-shadow .18s;

  text-shadow:

    0 2.5px 15px var(--accent),

    0 10px 20px #fff7;

  position: relative;

  z-index: 2;

  word-break: break-word;

  word-wrap: break-word;

  white-space: normal;

  animation: holofade552 .85s cubic-bezier(.39,1.51,.17,1.02) both;

}

@keyframes holofade552 {

  from { opacity: 0; transform: translateY(38px) scale(.97);}

  to   { opacity: 1; transform: none;}

}





.heroh1-holocloud552 .heroh1-title-holocloud552::before {

  content: '';

  position: absolute;

  left: 38%; top: 50%;

  width: 151px; height: 39px;

  background: linear-gradient(

    115deg,

    transparent,

    #fff 60%,

    transparent 100%

  );

  opacity: .16;

  pointer-events: none;

  filter: blur(5.5px);

  border-radius: 100px 70px 110px 80px / 80px 120px 95px 70px;

  z-index: 3;

  animation: shimmerho552 2.9s infinite linear alternate;

}

@keyframes shimmerho552 {

  0% { left: 15%; opacity: .05;}

  60% { left: 53%; opacity: .19;}

  100% { left: 85%; opacity: .13;}

}





.heroh1-holocloud552 .heroh1-glowbar-holocloud552 {

  width: 102px; height: 6px;

  margin: 2vw auto 0 auto;

  border-radius: 7px;

  background: linear-gradient(90deg, var(--primary) 15%, var(--accent) 65%, var(--accent-secondary, #ABA1FB) 100%);

  box-shadow: 0 2px 18px var(--primary), 0 0 16px var(--accent-secondary, #ABA1FB);

  position: relative;

  opacity: 0.86;

  animation: glowclipbar552 2.2s cubic-bezier(.81,.3,.12,1.29) both;

  transition: background .14s;

}

@keyframes glowclipbar552 {

  from { opacity: 0; width: 14px;}

  75%  { opacity: 1; width: 120px; }

  to   { width: 102px; opacity: 0.86; }

}





@media (max-width: 700px) {

  .heroh1-holocloud552 { max-width: 99vw; padding: 2rem 0.2rem 1.45rem 0.2rem; border-radius: 1.15em;}

  .heroh1-holocloud552 .heroh1-title-holocloud552 { font-size: var(--font-size-h2);}

  .heroh1-holocloud552 .heroh1-glowbar-holocloud552 { width: 51px; height: 2.3px; }

  .heroh1-holocloud552 .heroh1-title-holocloud552::before { width: 80px; height: 17px;}

  .heroh1-holocloud552 .heroh1-decorcloud-holocloud552 { width: 190px; height: 120px; }

}

@media (max-width: 400px) {

  .heroh1-holocloud552 { padding: .66rem 0.05rem .61rem 0.05rem;}

  .heroh1-holocloud552 .heroh1-title-holocloud552 { font-size: var(--font-size-h3);}

  .heroh1-holocloud552 .heroh1-glowbar-holocloud552 { width: 24vw; }

}

/* blog/blogindex5.css */
.blobblog-melting82 {

  width: 100%;

  box-sizing: border-box;

  padding-top: 2.7rem;

  background: none;

}



.blobblog-title-melting82 {

  font-size: 2.16rem;

  font-weight: 900;

  letter-spacing: -0.017em;

  text-align: center;

  background: linear-gradient(95deg, var(--primary), var(--accent), var(--accent-secondary, #ABA1FB) 80%);

  color: transparent;

  -webkit-background-clip: text;

  background-clip: text;

  margin: 46px 0 38px 0;

  position: relative;

  line-height: 1.12;

}

.blobblog-title-melting82::after {

  content: '';

  display: block;

  margin: 1.1em auto 0 auto;

  width: 65px;

  height: 6px;

  background: linear-gradient(93deg, var(--accent) 0%, var(--primary) 90%);

  border-radius: 12px;

  opacity: .42;

}



.blobblog-melting82 .blobblog-grid-melting82 {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));

  gap: 2.32rem 1.3rem;

  max-width: 1210px;

  margin: 0 auto 1.9rem auto;

  width: 100%;

  box-sizing: border-box;

}



.blobblog-melting82 .category-card {

  display: flex;

  flex-direction: column;

  border-radius: 32px;

  background: var(--light);

  box-shadow: 0 14px 38px -13px var(--shadow), 0 2.5px 12px var(--accent-transparent);

  position: relative;

  min-width: 0;

  overflow: visible;

  z-index: 1;

  transition: box-shadow .26s var(--transition), transform .17s var(--transition);

}





.blobblog-melting82 .category-card::before {

  content: '';

  position: absolute;

  left: 32px; top: 48px;

  width: 148px; height: 105px;

  background: radial-gradient(85% 82% at 31% 50%, var(--primary) 42%, var(--accent) 140%);

  opacity: 0.28;

  z-index: 0;

  filter: blur(0.5px);

  border-radius: 46% 78% 48% 49%/60% 41% 63% 52%;

  transition: opacity .33s var(--transition), transform .27s var(--transition);

  pointer-events: none;

}

.blobblog-melting82 .category-card:hover::before,

.blobblog-melting82 .category-card:focus-within::before {

  opacity: 0.49;

  transform: scale(1.22) translateY(-12px) rotate(-6deg);

  filter: blur(1.4px);

}





.blobblog-melting82 .category-card img {

  width: 100%;

  height: 182px;

  object-fit: cover;

  border-radius: 32px 32px 0 0;

  filter: grayscale(8%) brightness(.99) contrast(1.07);

  transition: filter .17s, box-shadow .14s;

  display: block;

  position: relative;

  z-index: 2;

  box-shadow: 0 4px 13px 0 var(--accent-transparent);

}

.blobblog-melting82 .category-card:hover img,

.blobblog-melting82 .category-card:focus-within img {

  filter: none;

  box-shadow: 0 8px 28px 0 var(--primary-hover);

}





.blobblog-melting82 .category-card .category-info {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 0.35em;

  background: rgba(255,255,255,0.89);

  border-radius: 0 0 32px 32px;

  min-height: 86px;

  box-sizing: border-box;

  text-align: left;

  -webkit-backdrop-filter: blur(3.5px);

  backdrop-filter: blur(3.5px);

  z-index: 3;

  padding: 0.84em 1.25em 1.18em 1.61em;

  position: relative;

  overflow: visible;

}





.blobblog-melting82 .category-card .category-info .category-rating {

  position: absolute;

  left: 0; top: 21px;

  width: 11px;

  height: 37%;

  background: linear-gradient(188deg, var(--accent), var(--primary) 97%);

  border-radius: 18px;

  opacity: 0.81;

  box-shadow: 0 0 14px 2.5px var(--accent-transparent);

  z-index: 5;

  transition: height .28s, opacity .14s;

}

.blobblog-melting82 .category-card:hover .category-info .category-rating,

.blobblog-melting82 .category-card:focus-within .category-info .category-rating {

  height: 45%;

  opacity: 1;

}





.blobblog-melting82 .category-card .category-info .category-title {

  color: var(--primary);

  font-size: 1.19rem;

  font-weight: 900;

  margin: 0 0 0.21em 0;

  letter-spacing: 0.008em;

  position: relative;

  z-index: 7;

  padding-left: 0.3em;

}

.blobblog-melting82 .category-card .category-info .category-title::after {

  content: "";

  position: absolute;

  left: 0; bottom: -0.31em;

  width: 24px;

  height: 4px;

  border-radius: 2px;

  background: var(--accent);

  opacity: 0.14;

}





.blobblog-melting82 .category-card .category-info .category-btn {

  display: inline-block;

  padding: 0.67em 1.05em;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  color: var(--light);

  font-weight: 700;

  font-size: 1.03rem;

  border-radius: 21px;

  box-shadow: 0 2px 6px 0 var(--primary-hover);

  text-decoration: none;

  transition: background .14s, color .11s, box-shadow .11s, opacity .09s, transform .14s;

  border: none;

  cursor: pointer;

  margin-top: 8px;

}



.blobblog-melting82 .category-card .category-info .category-btn:hover,

.blobblog-melting82 .category-card .category-info .category-btn:focus {

  background: var(--accent);

  color: var(--light);

  box-shadow: 0 6px 14px 0 var(--primary-hover);

}





@media (max-width: 900px) {

  .blobblog-title-melting82 { font-size: 1.14rem; margin-bottom: 19px;}

  .blobblog-melting82 .blobblog-grid-melting82 {

    grid-template-columns: 1fr 1fr;

    gap: 1.07rem 0.63rem;

    padding-left: 2vw; padding-right: 2vw;

  }

  .blobblog-melting82 .category-card img { height: 200px; border-radius: 18px 18px 0 0;}

  .blobblog-melting82 .category-card { border-radius: 18px; }

  .blobblog-melting82 .category-card .category-info {

    min-height: 50px;

    padding: .53em 0.6em .63em 0.89em;

    border-radius: 0 0 18px 18px;

  }

  .blobblog-melting82 .category-card .category-info .category-title {

    font-size: .91rem;

  }

  .blobblog-melting82 .category-card .category-info .category-rating {

    width: 6px; left: 0; top: 12px;

  }

}



@media (max-width: 600px) {

  .blobblog-melting82 { padding: 8px 0 0 0;}

  .blobblog-title-melting82 { font-size: 0.95rem; margin: 8px 0 7px 0;}

  .blobblog-title-melting82::after { margin: .53em auto 0 auto; width: 23px; height: 2.2px; }

  .blobblog-melting82 .blobblog-grid-melting82 {

    grid-template-columns: 1fr;

    gap: 0.61rem 0;

    max-width: 99vw;

    padding-left: 1vw;

    padding-right: 1vw;

  }

  .blobblog-melting82 .category-card { border-radius: 7px;}

  .blobblog-melting82 .category-card img { height: 200px; border-radius: 7px 7px 0 0;}

  .blobblog-melting82 .category-card .category-info {

    min-height: 11px;

    padding: .13em .19em .17em .25em;

    border-radius: 0 0 7px 7px;

  }

  .blobblog-melting82 .category-card .category-info .category-title {

    font-size: .67rem;

    margin-bottom: .093em;

  }

  .blobblog-melting82 .category-card .category-info .category-rating {

    width: 3.5px; height: 18%; top: 6px;

  }

  .blobblog-melting82 .category-card::before {

    left: 12px; top: 22px; width: 59px; height: 33px;

  }

}

/* 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/bloglink5.css */
.linksmod-grideta102 {

  width: 100%;

  max-width: 366px;

  margin: 0 auto var(--section-gap);

  display: flex;

  flex-direction: column;

  gap: var(--page-gap);

  position: relative;

  z-index: 1;

  border-radius: 24px;

  background: var(--background);

  box-shadow: 0 2.5px 26px 0 rgba(80,70,180,0.06);

  padding-top: 12px;

}



.linksmod-grideta102 .linksmod-title-grideta102 {

  font-size: 1.19rem;

  font-weight: 800;

  color: var(--primary);

  margin-bottom: 0.9em;

  letter-spacing: -0.01em;

  text-align: center;

  position: relative;

  padding-bottom: 0.41em;

}



.linksmod-grideta102 .linksmod-title-grideta102::after {

  content: '';

  display: block;

  margin: 0.48em auto 0 auto;

  width: 44px; height: 4.5px;

  background: linear-gradient(90deg, var(--primary), var(--accent));

  border-radius: 6px;

  opacity: .44;

}

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .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);

}

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image:hover {

    background: none;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 {

  display: grid;

  grid-template-columns: 1fr;

  gap: 22px 16px;

  padding: 0 14px 17px 14px;

  box-sizing: border-box;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 {

  display: contents;

}





.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a {

  display: flex;

  flex-direction: column;

  align-items: center;

  border-radius: 16px;

  background: var(--light);

  box-shadow:

      0 2.5px 16px 0 rgba(90,60,160,0.07),

      0 0 0 1.5px var(--accent-transparent);

  position: relative;

  min-height: 150px;

  padding: 23px 7px 18px 7px;

  text-decoration: none;

  color: var(--dark);

  transition: box-shadow .29s var(--transition), transform .28s var(--transition), background .17s;

  overflow: visible;

  isolation: isolate;

  will-change: transform;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:hover,

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:focus {

  background: var(--accent-transparent);

  box-shadow:

      0 9px 34px 0 rgba(80,40,170,0.12),

      0 0 0 3px var(--primary-hover);

  transform: translateY(-3px) scale(1.025);

}





.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image img {

  width: 62px;

  height: 62px;

  border-radius: 50%;

  object-fit: cover;

  object-position: center;

  background: linear-gradient(120deg, var(--primary) 60%, var(--accent) 100%);

  border: 3.5px solid;

  border-image: linear-gradient(120deg, var(--primary) 60%, var(--accent)) 1;

  box-shadow:

      0 2.5px 12px 0 var(--accent-transparent),

      0 0 0 7px var(--light);

  margin-bottom: 15px;

  transition: border-color .32s var(--transition), box-shadow .21s var(--transition);

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:hover img,

.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:focus img {

  border-color: var(--primary);

  box-shadow: 0 6px 20px 0 var(--accent-transparent), 0 0 0 10px var(--accent-secondary, #ABA1FB);

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a {

  font-size: 1.07rem;

  font-weight: 700;

  letter-spacing: 0.01em;

  line-height: 1.27;

  text-align: center;

  position: relative;

  min-height: 45px;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a::after {

  content: '';

  display: block;

  width: 19px;

  height: 3px;

  background: var(--primary);

  border-radius: 2.5px;

  opacity: 0.15;

  margin: 7px auto 0 auto;

}



.linksmod-grideta102 .linksmod-wrap-grideta102 .link-item-grideta102 .with-image a:focus-visible {

  outline: 2.2px solid var(--accent);

  box-shadow: 0 0 0 6px var(--primary-hover);

}





@media (max-width: 600px) {

  .linksmod-grideta102 {

    max-width: 99vw;

    border-radius: 13px;

    padding-top: 7px;

  }

  .linksmod-grideta102 .linksmod-wrap-grideta102 {

    grid-template-columns: 1fr;

    gap: 21px 0;

    padding-left: 6px; padding-right: 6px;

  }

  .linksmod-grideta102 .linksmod-title-grideta102 {

    font-size: 1rem;

    padding-bottom: 0.22em;

  }

}

/* 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;

  }

}