@font-face {
    font-family: 'Montserrat';
    src: url(/static/fonts/montserrat/Montserrat-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    /*font-display: swap;*/
    font-display: block; /* Change from swap to block for critical fonts */
}

@font-face {
    font-family: 'MontserratBold';
    src: url(/static/fonts/montserrat/Montserrat-Bold.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    /*font-display: swap;*/
    font-display: block; /* Change from swap to block for critical fonts */
}


@font-face {
    font-family: 'Nunito';
    src: url(/static/fonts/Nunito/static/Nunito-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    /*font-display: swap;*/
    font-display: block; /* Change from swap to block for critical fonts */
}

@font-face {
    font-family: 'NunitoBold';
    src: url(/static/fonts/Nunito/static/Nunito-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}


@font-face {
    font-family: 'NunitoSemiBold';
    src: url(/static/fonts/Nunito/static/Nunito-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'NunitoExtraBold';
    src: url(/static/fonts/Nunito/static/Nunito-ExtraBold.ttf) format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'NunitoBlack';
    src: url(/static/fonts/Nunito/static/Nunito-Black.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: block;
}


.montserrat {
    font-family: 'Montserrat', Arial, sans-serif;
}


.montserrat-bold {
    font-family: 'MontserratBold', 'Arial Bold', Arial, sans-serif;
}


.nunito-bold {
    font-family: 'NunitoBold', 'Arial Bold', Arial, sans-serif;
}


.nunito-semibold {
    font-family: 'NunitoSemiBold', 'Arial Bold', Arial, sans-serif;
    font-weight: 600;
}

.nunito-extrabold {
    font-family: 'NunitoExtraBold', 'Arial Black', Arial, sans-serif;
    font-weight: 800;
}

.nunito-black {
    font-family: 'NunitoBlack', 'Arial Black', Arial, sans-serif;
    font-weight: 900;
}


.nunito {
    font-family: 'Nunito', 'Arial', Arial, sans-serif;
}


html {
    overflow-x: clip;
    max-width: 100%;
}

body {
    min-height: 100vh;
    max-width: 100%;
    overflow-x: clip;

    font-family: 'Nunito', 'Arial', Helvetica Neue, Helvetica, sans-serif;
    color: black;
    background-color: white;
}

/* Sticky footer on landing pages (signinup, etc.) */
html,
body.sol-layout-sticky-footer {
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

/* signinup only: gradient on shell (body bg cleared in header inline + below) */
body.sol-layout-sticky-footer.sol-gradient_full.sol-page-footer-fixed {
    background: none !important;
}

body.sol-layout-sticky-footer .sol-site-shell {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    color: inherit;
}

/* Homepage: transparent shell — gradient stays on body via .sol-gradient_full (fixed) */
body.sol-layout-sticky-footer.sol-gradient_full:not(.sol-page-footer-fixed) .sol-site-shell {
    background: transparent;
    color: #fff;
}

body.sol-layout-sticky-footer .sol-site-shell > .container-fluid {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
}

body.sol-layout-sticky-footer .sol-site-shell > .sol-landing-footer {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
}

/* Short pages (signinup): pin footer to viewport bottom */
body.sol-page-footer-fixed .sol-site-shell {
    min-height: 100dvh;
    padding-bottom: 5.5rem;
    box-sizing: border-box;
    background: var(--sol-hero-gradient-desktop, linear-gradient(
            180deg,
            #a685bc 0%,
            #b988bb 35%,
            #d48dbb 60%,
            #da89b8 75%,
            #e486b5 90%,
            #ea92bd 100%
    ));
    background-attachment: scroll;
    color: #fff;
}

body.sol-page-footer-fixed .sol-site-shell > .sol-landing-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
}

.container-fluid {
    max-width: 100%;
}


/* Full-page gradient on homepage only (body) — iOS Safari breaks background-attachment: fixed */
body.sol-gradient_full:not(.sol-page-footer-fixed) {
    position: relative;
    isolation: isolate;
    color: #fff;
    background-color: var(--sol-hero-gradient-base, #b988bb);
}

body.sol-gradient_full:not(.sol-page-footer-fixed)::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: var(--sol-hero-gradient-desktop, linear-gradient(
            180deg,
            #a685bc 0%,
            #b988bb 35%,
            #d48dbb 60%,
            #da89b8 75%,
            #e486b5 90%,
            #ea92bd 100%
    ));
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@media (max-width: 991px) {
    body.sol-gradient_full:not(.sol-page-footer-fixed)::before {
        background: var(--sol-hero-gradient-mobile, linear-gradient(
                180deg,
                #a685bc 0%,
                #b988bb 20%,
                #d48dbb 42%,
                #da89b8 58%,
                #e486b5 74%,
                #ea92bd 100%
        ));
    }
}

/* Header band on static pages — same viewport-fixed gradient as homepage (not squashed into row height) */
body:not(.sol-gradient_full) .row.sol-gradient_full {
    background-color: var(--sol-hero-gradient-row-top, #a685bc);
    background-image: var(--sol-hero-gradient-desktop, linear-gradient(
            180deg,
            #a685bc 0%,
            #b988bb 35%,
            #d48dbb 60%,
            #da89b8 75%,
            #e486b5 90%,
            #ea92bd 100%
    ));
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
}

@media (max-width: 991px) {
    body:not(.sol-gradient_full) .row.sol-gradient_full {
        background-image: var(--sol-hero-gradient-mobile, linear-gradient(
                180deg,
                #a685bc 0%,
                #b988bb 20%,
                #d48dbb 42%,
                #da89b8 58%,
                #e486b5 74%,
                #ea92bd 100%
        ));
    }
}

.navbar-toggler, .navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus
{
    border:none;
    outline: none;
    box-shadow: none;
}
.navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");


}

a {
    color: #fff;
    text-underline-offset: 0.2em;
}

a:hover {
    color: yellow;
}

/* main font for languages with pure latin symbols */
.html-lang-latin {
    font-family: 'Montserrat', 'Arial', Helvetica Neue, Helvetica, sans-serif;
    font-size: 16px;

}

/* main font for languages with non-lating symbols (Greek, etc) */
.html-lang-non-latin {
    font-family: Arial, sans-serif !important;
    font-size: 17px;
}


.sol-logo {
    width: 4.6em;
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-logo {
        width: 4.6em;
    }
}


.sol-header-signin a
{
    color:#fff;
    text-decoration: none;
    font-size: 0.8em;
}
.sol-header-signin a:hover
{
    color:yellow;
}



.sol-header-dashboard a
{
    color:#fff;
    text-decoration: none;
    font-size: 0.7em;
}
.sol-header-dashboard a:hover
{
    color:yellow;
}





.sol-h1 {
    font-size: 3.5em;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-h1 {
        font-size: 2.3em
    }
}

.sol-h2 {
    font-size: 1.4em
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-h2 {
        font-size: 1.1em
    }
}



.sol-label_best_tool {
    width: 10em
}

.sol-label_best_tool-spacer {
    display: block;
    height: 0.75rem;
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-label_best_tool {
        width: 8em
    }

    .sol-label_best_tool-spacer {
        height: 0.5rem;
    }
}


.sol-easy_to_use {
    font-size: 1.2em
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-easy_to_use {
        font-size: 0.9em;
    }
}


.sol-footer_text_white, .sol-footer_text_white a {
    font-size: 0.98em;
    color: white;
}


.sol-footer_text, .sol-footer_text a {
    font-size: 0.98em;
    color: #8c5c96;

}


.sol-footer_text a:hover {
    color: black;
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-footer_text {
        font-size: 0.8em;
    }
}


/* google button - signup */
.gsi-material-button {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
    background-color: WHITE;
    background-image: none;
    border: 1px solid #fff;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1f1f1f;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 16px;
    height: 52px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 22px;
    position: relative;
    text-align: center;
    -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
    transition: background-color .218s, border-color .218s, box-shadow .218s;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    /* max-width: 400px; */
    min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
    border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #303030;
    opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
    background-color: #303030;
    opacity: 8%;
}


/* /google button - signup */

.sol-legal-page {
    font-family: 'Nunito', 'Arial', Arial, sans-serif;

}

.sol-legal-page a {
    color: darkviolet;
}

.sol-legal-page a:hover {
    color: black;
}


.sol_legal_back a {
    color: #b0b0b0;
    text-decoration: none;
}


.sol-legal-h1, .sol-legal-h2 {
    font-family: 'NunitoBold', 'Arial Bold', Arial, sans-serif;
}

.sol-legal-date {
    color: #8c5c96;
}


/* Content pages shell (FAQ, Contact, legal) */
.sol-page-shell {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    padding: 1.5rem 0 3.5rem;
}

.sol-page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.sol-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.sol-page-breadcrumb a:hover {
    color: #ffe769;
}

.sol-page-breadcrumb-sep {
    opacity: 0.55;
    user-select: none;
}

.sol-page-breadcrumb [aria-current="page"] {
    color: rgba(255, 255, 255, 0.65);
}

.sol-page-hero {
    margin-bottom: 1.75rem;
    text-align: center;
}

.sol-page-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.sol-page-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.02em;
}

.sol-page-subtitle {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.sol-page-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 0.5rem 1.25rem 0.25rem;
    box-shadow: 0 14px 44px rgba(50, 20, 60, 0.14);
}

.sol-page-card .sol-faq-accordion .accordion-body {
    color: #7d6684;
}

.sol-page-card .sol-faq-accordion .accordion-body p {
    margin: 0 0 0.85rem;
}

.sol-page-card .sol-faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.sol-page-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #7d6684;
}

.sol-page-list li {
    margin-bottom: 0.65rem;
    line-height: 1.55;
}

.sol-page-list li:last-child {
    margin-bottom: 0;
}

.sol-page-list strong {
    color: #2f2435;
    font-weight: 700;
}

.sol-page-cta {
    margin-top: 2rem;
    padding: 2rem 1.25rem 2.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sol-page-cta-inner {
    max-width: 34rem;
    margin: 0 auto;
}

.sol-page-cta-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    line-height: 1.15;
    color: #fff;
}

.sol-page-cta-subtitle {
    margin: 0 auto 1.25rem;
    max-width: 28rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {
    .sol-page-shell {
        padding: 2rem 0 4.5rem;
    }

    .sol-page-hero {
        text-align: left;
    }

    .sol-page-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .sol-page-card {
        padding: 0.75rem 1.75rem 0.35rem;
    }

    .sol-page-cta {
        padding: 2.25rem 2rem 2.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .sol-page-shell {
        padding: 1.25rem 0 3rem;
    }

    .sol-page-card {
        padding: 0.35rem 0.85rem 0.15rem;
        border-radius: 1rem;
    }

    .sol-page-cta {
        margin-top: 1.5rem;
        padding: 1.5rem 0.85rem 1.75rem;
    }
}

/* FAQ: content at top (white main area), not vertically centered in viewport */
body.sol-faq-body.sol-layout-sticky-footer .sol-site-shell {
    min-height: auto;
}

body.sol-faq-body.sol-layout-sticky-footer .sol-site-shell > .container-fluid {
    flex: 0 0 auto;
}

body.sol-faq-body.sol-layout-sticky-footer .sol-site-shell > .sol-landing-footer {
    margin-top: 2rem;
}

body.sol-faq-body .sol-faq-intro {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #7d6684;
}

body.sol-faq-body .sol-faq-card {
    padding: 0.5rem 1.25rem 0.25rem;
}

body.sol-faq-body .sol-faq-cta {
    margin-top: 2rem;
    background: #f3eef5;
    border: 1px solid #e0d4e8;
}

body.sol-faq-body .sol-faq-cta .sol-page-cta-inner {
    text-align: center;
}

body.sol-faq-body .sol-faq-cta .sol-page-cta-title,
body.sol-faq-body .sol-faq-cta .sol-page-cta-subtitle {
    color: #2f2435;
}

body.sol-faq-body .sol-faq-cta .sol-page-cta-subtitle {
    color: #7d6684;
}


/* ++++++ rounded buttons */
.sol-input {
    border: none;
    box-shadow: none;
    padding-right: 1em !important;
    padding-left: 1em !important;
    font-size:1em!important;
}


.sol-input::placeholder {
    color: lightgray;
    opacity: 1; /* Firefox */
}


.sol-input-green::placeholder {
    color: #81c463;;
    opacity: 1; /* Firefox */
}

.sol-input-violet::placeholder {
    color: #A662A7;;
}


.sol-input::-ms-input-placeholder { /* Edge 12 -18 */
    color: lightgray;
}


.sol-input:focus {
    outline: 0;
    box-shadow: none;
}

.sol-input-icon {
    max-height: 1em
}

/* Sign in / sign up */
.sol-signinup-page .sol-signinup-inner {
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.sol-signinup-page .gsi-material-button {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    height: 46px;
    min-height: 46px;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 30px;
}

.sol-signinup-page .gsi-material-button .gsi-material-button-contents {
    font-weight: 700;
}

.sol-signinup-page .sol-signinup-subtitle {
    padding-left: 2em;
    padding-right: 2em;
}

.sol-signinup-page .sol-signinup-alert {
    margin: 0 0 1.25rem;
    padding: 0.9rem 1.15rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.94);
    color: #4a2a3f;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 6px 20px rgba(40, 15, 35, 0.12);
}

.sol-signinup-page .g-recaptcha {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

.sol-signinup-page .g-recaptcha > div {
    margin: 0 auto !important;
}

.sol-signinup-page .sol-input-group {
    width: 100%;
}

.sol-input-group {
    background-color: white;
    border-bottom-right-radius: 1.4rem;
    border-top-right-radius: 1.4rem;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-bottom-left-radius: 1.4rem;
    border-top-left-radius: 1.4rem;
}


.sol-input-group-green {
    border-color: #81c463 !important;
}

.sol-input-group-violet {
    border-color: #A662A7 !important;
}


.sol-input-group-text {
    background-color: transparent;
    border: none;
    padding-right: 0.2em !important;
    padding-left: 0.6em !important;
}

.sol-input-big-append {
    height: 100%;
    padding-top: 4px;
    padding-right: 4px;
    padding-left: 2px;
}


.sol-input-button {
    background-color: white;
    color: white;
    background-size: cover !important;
    border-radius: 2rem;
    /*border: 3px solid white;*
     */
    border:none;
    font-size: 1.1em;
    font-weight: bold;

    padding-left: 2em;
    padding-right: 2em;
}


/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-input-button {
        padding-left: 1em !important;
        padding-right: 1em !important;
        font-size: 1em;
        padding-top: 0.5em;
    }
}

.sol-input-button:hover {
    /*border: 3px solid white !important;*/
    /*color: yellow !important;*/
    border:none!important;
}

.sol-input-button-small {
    background-color: white;
    color: white;
    background-size: cover !important;
    border-radius: 2rem;
    /*border: 3px solid white;*/
    border:none;
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-left: 2em;
    padding-right: 2em;
    margin-bottom: 0.15em;
}

.sol-input-button-small:hover {
    /*border: 3px solid white !important;*/
    border:none;
    color: yellow !important;
}

.sol-input-button-text-black {
    color: black;
}


.sol-subscribe-border-gradient
{
    border:1px solid blueviolet;
}

.sol-btn-gradient-yellow {
    background: linear-gradient(to bottom, #fbea03, #f9df06, #efbe14);
    color: black;
}

.sol-btn-gradient-yellow:hover, .sol-btn-gradient-yellow:focus {

    /*
    background: none;
    background-color: #81c463; */
    background: linear-gradient(to bottom, #4990e1, #3774bc);
    color: #fff;
    border: 3px solid #fff;
}


.sol-btn-gradient-rose {
    background: linear-gradient(to right, #847bba, #bb88ed, #d87bd6, #e7589e);
    color: white;
    width: 100%;
    font-size: 1em;
}

.sol-btn-gradient-rose:hover, .sol-btn-gradient-rose:focus {

    background: linear-gradient(to bottom, #81c463, #81c463);
    color: #fff;
    border: 3px solid #fff;
}


.sol-button-gradient {

    background-color: white;
    color: white;
    background-size: cover;
    border-radius: 2em;
    border: 3px solid white;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-left: 1em;
    padding-bottom: 0.4em;
    padding-top: 0.4em;
    padding-right: 1em;
    text-align: center;
    text-decoration: none;

}

.sol-button-gradient:hover {
    color: yellow;
}


.sol-btn-green {
    background-color: #81c463;
    border: none;
    color: #fff;
    letter-spacing: 0.08em;
}

.sol-btn-green:hover, .sol-btn-green:focus {
    background-color: #a662a7 !important;
    color: #fff;
}


.sol-btn-darkgreen {
    background-color: #65bebe;
    border: none;
    color: #fff;
    letter-spacing: 0.08em;
}

.sol-btn-darkgreen:hover, .sol-btn-darkgreen:focus {
    background-color: #a662a7 !important;
    color: #fff;
}


.sol-btn-blue {
    background-color: #8bcce0;
    border: none;
    color: #fff;
    letter-spacing: 0.08em;
}

.sol-btn-blue:hover, .sol-btn-blue:focus {
    background-color: #085ed7 !important;
    color: #fff;
}


.sol-btn-darkblue {
    /*background-color: #085ed7 !important;*/
    /* background-color: #8ac3f6!important; */
    border: none;
    color: #fff;

    background: linear-gradient(to bottom, #4990e1, #3774bc);
    color: #fff;
    border: 3px solid #fff;

    letter-spacing: 0.08em;
}

.sol-btn-darkblue:hover, .sol-btn-lightblue:focus {
    background: linear-gradient(to bottom, #fbea03, #f9df06, #efbe14);
    color: black;
    /* background-color: #085ed7 !important; */

}


.sol-btn-lightblue {
    background-color: #8ac3f6 !important;
    border: none;
    color: #fff;
    letter-spacing: 0.08em;
}

.sol-btn-lightblue:hover, .sol-btn-lightblue:focus {
    background-color: #085ed7 !important;
}


.sol-btn-violet {
    background-color: #A662A7;
    border: none;
    color: #fff;
    letter-spacing: 0.08em;
}

.sol-btn-violet:hover, .sol-btn-violet:focus {
    background-color: #706f6e;
    color: #fff !important;
}


.sol-btn-red {
    background-color: #f05b4e;
    border: none;
    color: #fff;
    letter-spacing: 0.08em;
}

.sol-btn-red:hover, .sol-btn-red:focus {
    background-color: #de535b !important;
}

.sol-btn-outline-red {
    background-color: #fff !important;
    border: 1px solid #f05b4e !important;
    color: #f05b4e;
    letter-spacing: 0.08em;
}

.sol-btn-outline-red:hover, .sol-btn-outline-red:focus {
    background-color: #de535b !important;
}


.sol-btn-outline-red:hover {
    background-color: #f05b4e !important;
    color: #fff;
}

.sol-btn-condensed {
    letter-spacing: 0.04em;
    font-size: 0.9em;
}


/* ---------- rounded buttons */


.sol-text-rose {
    color: #ff4caa;
}

.sol-text-blue {
    color: #26a9e1
}

.sol-text-green {
    color: #81c463;
}


/*
DASHBOARD
 */

.sol-dashboard-background
{
    background-color: #F7F6F4;

}

/* Payment success alert (tracker-add) — compact type on mobile */
.sol-payment-success-alert .sol-payment-success-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

.sol-payment-success-alert .sol-payment-success-body {
    font-size: 0.78rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .sol-payment-success-alert .sol-payment-success-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .sol-payment-success-alert .sol-payment-success-body {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

.sol-tracker-add-heading {
    margin-bottom: 1em !important;
}

@media (min-height: 701px) {
    .sol-tracker-add-heading {
        margin-top: 3em !important;
    }
}

.sol-tracker-add-fields {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .sol-tracker-add-fields {
        width: 66.666667%;
        max-width: 66.666667%;
    }
}

.sol-tracker-add-submit {
    display: block;
    width: 100%;
    margin-top: 1rem;
    min-height: 3rem;
    padding-top: 0.72em;
    padding-bottom: 0.72em;
}

.sol-dash-sidebar-title {
    /*background-color:#f4f4f4;*/
    /*font-size: 0.9em;*/
    text-decoration: underline;
    text-decoration-color: #d63d8e;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 0.1em;
}

.sol-dash-sidebar-title-icon {
    max-width: 1.4em;
}


.sol-dash-sidebar-link {
    color: #1d1d1b;
}

.sol-dash-sidebar-link a {
    color: #1d1d1b;
    text-decoration: none;
}


.sol-dash-sidebar-icon {
    width: 1.5em;
    max-width: 1.5em;
}


.sol-dash-index-bg-left {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    /*background-color: #fff;*/
    background-color: #eee8f2;
    height: 12em;
    box-sizing: border-box;
    border-top-right-radius: 5em;
    border-bottom-right-radius: 5em;
}


.sol-dash-index-bg-right {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    /*background-color: #fff;*/
    background-color: #eee8f2;
    height: 12em;
    box-sizing: border-box;
    border-top-left-radius: 5em;
    border-bottom-left-radius: 5em;
}


.sol-dash-index-link {
    font-size: 1.2em;
}


.sol-dash-index-text {
    font-size: 0.9em;
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-dash-index-link {
        font-size: 0.9em;
    }


    .sol-dash-index-text {
        font-size: 0.75em;
    }

    .sol-dash-index-bg-left {
        height: 10em;
    }

    .sol-dash-index-bg-right {
        height: 10em;
    }
}


.sol-dash-index-link a {
    color: #000;
    text-decoration: none;
}

.sol-dash-index-link a:hover {
    text-decoration: underline;
}


.sol-dash-sidebar-link-active a {
    font-weight: bold;
}


/* mega input */
.input-group-sr {
    background-color: white;
    border-bottom-right-radius: 1.4rem;
    border-top-right-radius: 1.4rem;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-bottom-left-radius: 1.4rem;
    border-top-left-radius: 1.4rem;
}

.input-group-text-sr {
    background-color: transparent;
    border: none;
    padding-right: 0.2em !important;
    padding-left: 0.6em !important;
    font-family: Nunito, sans-serif !important;
}


.input-icon-sr {
    max-height: 1.2em
}

.input-both-sr {
    border: none;
    box-shadow: none;
    padding-right: 0.8em !important;
    padding-left: 0.7em !important;

    border-bottom-right-radius: 1.4rem !important;
    border-top-right-radius: 1.4rem !important;

}


.input-both-sr:focus {
    outline: 0;
    box-shadow: none;
}


.sol-popup-friends {
    /* background: linear-gradient(to bottom, #509cd0, #509cd0, #509cd0, #85ccec); */

    background: linear-gradient(to bottom, #25b1b7, #26b5b2, #2bc59e, #2fd091, #30d38d);
    border: none!important;

}


/*
Mobile sticky footer
 */

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    background: #3c3c3c;
    border-top: 1px solid #dee1f4;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

.mobile-footer-item {
    padding: 2px 0;
}

.mobile-footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #F7F6F4;
    transition: color 0.2s;
}

.mobile-footer-link:hover,
.mobile-footer-link.active {
    color: #39d2c0;
}

.mobile-footer-link-active
{
    color: #39d2c0;
}



.mobile-footer-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}


.mobile-footer-icon svg {
    font-size: 20px;
    width: 1em;
    height: 1em;
}


.mobile-footer-text {
    font-size: 12px;
    font-weight: 500;
}

/* lag for content to avoid header overflow */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 60px;
    }
}

.mobile-footer-link.active {
    color: #39d2c0;
    font-weight: bold;
}

.mobile-footer-link.active .mobile-footer-icon {
    filter: brightness(0) saturate(100%) invert(37%) sepia(99%) saturate(1234%) hue-rotate(193deg) brightness(96%) contrast(101%);
}

/*
 --- mobile sticky footer
 */


.sol-profile-header-subs {
    font-size: 0.7em;
}

.sol-profile-header-nick {
    color: #848384;
    font-size: 0.8em;
}



.sol-profile-header-bio {

    font-size: 0.9em;
}


.sol-profile-table-row {
    border-bottom: 1px solid #e0e3e7;
    line-height: 2.7em;
}


.sol-profile-table-text {
    font-size: 1em;
}

.sol-profile-table-text:hover
{
    text-decoration: underline;
    cursor: pointer;
}

.sol-profile-table-number
{
    font-size: 1.2em;
}
.sol-profile-table-number:hover
{
    text-decoration: underline;
    cursor: pointer;
}

.sol-profile-table-arrow {
    font-size: 1.2em;
    color: #999999;
    text-decoration: none!important;
}

.sol-profile-switch-on {
    background-color: #fff;
    color: #736b6d;
}

.sol-profile-switch-off {
    background-color: #e7e1e2;
    color: #bcb7ba;
}

.sol-profile-switch:hover {
    color: white;
    background-color: black;
}


.sol-profile-list-name a {
    color: black;
    text-decoration: none;

}

.sol-profile-list-name a:hover {
    color: #d63d8e;
    text-decoration: underline;
}


.sol-profile-list-nickname a {
    color: #848384;
    font-size: 0.8em;
    text-decoration: none;
}

.sol-profile-list-nickname a:hover {
    color: #d63d8e;
    text-decoration: underline;
}


.sol-profile-list-image {
    max-width: 60px !important;
}

.sol-profile-list-arrow a {
    color: #999999;
    font-size: 1.3em;
    text-decoration: none;
}

.sol-profile-list-arrow a:hover {
    color: #d63d8e;
    text-decoration: none;
}


.sol-followers-image
{
    max-width: 60px !important;
}


.sol-followers-date
{
    color:#848384;
    font-size:1em;
}


.sol-followers-fullname {
    color: #000;

}

.sol-followers-nickname {
    color: #848384;
    font-size:0.8em;
}

.sol-followers  {
    text-decoration: underline;
    text-decoration-color: #F7F6F4;
}


.sol-followers:hover * {
    text-decoration: underline;
    text-decoration-color: #F7F6F4;
}

.sol-followers a
{
    color: black;
    text-decoration: none;
}

.sol-followers a:hover
{
    color: #d63d8e;
    text-decoration: none;
}



/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-followers-date
    {
           font-size:0.7em;
    }
}






/*
Loading heart - used when parsing profiles
 */
.loaderHeart {
    width: 60px;
    aspect-ratio: 1;
    background: linear-gradient(#dc1818 0 0) bottom/100% 0% no-repeat #ccc;
    -webkit-mask: radial-gradient(circle at 60% 65%, #000 62%, #0000 65%) top left,
    radial-gradient(circle at 40% 65%, #000 62%, #0000 65%) top right,
    linear-gradient(to bottom left, #000 42%, #0000 43%) bottom left,
    linear-gradient(to bottom right, #000 42%, #0000 43%) bottom right;
    -webkit-mask-size: 50% 50%;
    -webkit-mask-repeat: no-repeat;
    animation: l19 2s infinite linear;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1em
}

@keyframes l19 {
    90%, 100% {
        background-size: 100% 100%
    }
}


/* Absolute Center Spinner */
.loading {
    display: none;
    position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;

    border: 15px solid rgba(33, 150, 243, 1.0);
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;


}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Landing header nav */
.sol-header-bar {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.sol-header-nav {
    flex-wrap: nowrap;
    gap: 1.35rem;
}

.sol-header-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.15rem;
    border: none;
    border-radius: 0;
    background: transparent !important;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: none !important;
}

.sol-header-lang-btn:hover,
.sol-header-lang-btn:focus,
.sol-header-lang-btn.show,
.sol-header-lang-btn:active {
    background: transparent !important;
    color: #ffe769;
    box-shadow: none !important;
}

.sol-header-lang-btn::after {
    margin-left: 0.15rem;
    vertical-align: middle;
}

.sol-header-lang-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.65rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.sol-header-lang-menu {
    min-width: 11rem;
    border: none;
    border-radius: 0.85rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    padding: 0.35rem;
}

.sol-header-lang-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border-radius: 0.55rem;
    font-weight: 600;
    color: #333;
}

.sol-header-lang-item.active,
.sol-header-lang-item:active {
    background: #f3e8f7;
    color: #6b3f7d;
}

.sol-header-link-login {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.sol-header-link-login:hover {
    color: #ffe769 !important;
}

.sol-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.15rem;
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}

.sol-header-cta:hover,
.sol-header-cta:focus {
    background: #2b2b2b;
    color: #fff !important;
}

@media only screen and (max-width: 575px) {
    .sol-header-cta {
        padding: 0.4rem 0.85rem;
        font-size: 0.82rem;
    }

    .sol-header-link-login {
        font-size: 0.85rem;
    }
}


/* Hero search on landing index */
.sol-hero-search-row {
    margin-top: 2.5rem;
}

@media (min-width: 992px) {
    .sol-hero-search-row {
        margin-top: 3rem;
    }
}

.sol-hero-trust-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem 1.35rem;
    margin: 0.9rem auto 0;
    max-width: 44rem;
}

.sol-hero-trust-group .sol-hero-trust {
    margin: 0;
}

.sol-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.9rem auto 0;
    max-width: 40rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
}

.sol-hero-trust-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #6bc48a;
}

.sol-hero-trust-icon svg {
    display: block;
}

@media (min-width: 992px) {
    .sol-hero-trust {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: auto;
    }

    .sol-hero-trust-group {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .sol-hero-trust-group {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .sol-hero-trust {
        font-size: 0.88rem;
        margin-top: 0.75rem;
    }

    .sol-hero-trust-group {
        margin-top: 0.75rem;
    }

    .sol-hero-trust-group .sol-hero-trust {
        margin-top: 0;
        font-size: 0.88rem;
    }

    .sol-hero-trust-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Get Started modal (header) */
.sol-get-started-modal-dialog {
    max-width: 32rem;
}

.sol-get-started-modal {
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.sol-get-started-modal .modal-header {
    position: relative;
    padding: 1.5rem 3rem 0.5rem;
}

.sol-get-started-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.sol-get-started-modal-title {
    font-size: 1.35rem;
    color: #2a2230;
    margin-bottom: 0.35rem;
}

.sol-get-started-modal-subtitle {
    font-size: 0.95rem;
    color: #6b5f70;
}

.sol-get-started-modal .sol-hero-search {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575px) {
    .sol-get-started-modal .modal-header {
        padding: 1.25rem 2.75rem 0.25rem 1rem;
    }
}

.sol-hero-search {
    width: 100%;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .sol-hero-search {
        margin-left: 0;
        margin-right: auto;
    }

    .sol-hero-search-row.sol-hero-search-row--center .sol-hero-search {
        margin-left: auto;
        margin-right: auto;
    }

    .sol-hero-search-row.sol-hero-search-row--center .sol-hero-trust,
    .sol-hero-search-row.sol-hero-search-row--center .sol-hero-trust-group {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.sol-hero-search-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

.sol-hero-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    margin-left: 0.35rem;
}

.sol-hero-search-icon img {
    max-height: 1.45rem;
    width: auto;
}

.sol-hero-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    color: #333;
    font-size: 1.1rem;
    padding: 0.7rem 0.35rem;
    outline: none;
    box-shadow: none;
}

.sol-hero-search-input::placeholder {
    color: #9a9a9a;
}

.sol-hero-search-btn {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    background: linear-gradient(to bottom, #ea92bd, #e486b5, #da89b8);
    color: #fff;
    font-size: 1.05rem;
    white-space: nowrap;
}

.sol-hero-search-btn:hover,
.sol-hero-search-btn:focus {
    background: linear-gradient(to bottom, #f0a0c8, #ec96c0, #e193c2);
    color: #fff;
}

@media only screen and (max-width: 575px) {
    .sol-hero-search-inner {
        flex-wrap: wrap;
        align-items: center;
        border-radius: 1.25rem;
        padding: 0.55rem 0.65rem;
        gap: 0.4rem;
    }

    .sol-hero-search-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-left: 0.15rem;
    }

    .sol-hero-search-input {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        padding: 0.55rem 0.35rem;
        font-size: 1rem;
    }

    .sol-hero-search-btn {
        flex: 1 1 100%;
        width: 100%;
        margin-top: 0.1rem;
        padding: 0.75rem 1rem;
    }
}


/* Full-bleed sections inside Bootstrap column */
.sol-stats-section,
.sol-how-section,
.sol-tiktok-section,
.sol-faq-section,
.sol-cta-section {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

/* Landing stats strip — full viewport width */
.sol-stats-section {
    margin-top: 2.5rem;
    background: #fff;
    padding: 2.25rem 0;
}

.sol-stats-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sol-stat-item {
    text-align: center;
    padding: 0.25rem 0.5rem;
}

.sol-stat-value {
    line-height: 1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.sol-stat-number {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    color: #2f2435;
    letter-spacing: -0.02em;
    display: inline-block;
}

.sol-stat-value.is-stat-animating {
    animation: solStatRise 2s ease-out forwards;
}

@keyframes solStatRise {
    from {
        transform: translateY(0.42em);
        opacity: 0.55;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sol-stat-accent {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    color: #d76da8;
    letter-spacing: -0.02em;
}

.sol-stat-label {
    font-size: 0.88rem;
    line-height: 1.35;
    color: #7d6684;
}

@media (min-width: 992px) {
    .sol-stats-section {
        padding: 2.5rem 0;
    }

    .sol-stats-inner {
        padding: 0 2rem;
    }

    .sol-stat-label {
        font-size: 0.95rem;
    }
}

@media only screen and (max-width: 575px) {
    .sol-stats-section {
        margin-top: 2rem;
        padding: 1.75rem 0;
    }

    .sol-stat-item {
        padding: 0.35rem 0.25rem;
    }

    .sol-stat-label {
        font-size: 0.78rem;
    }
}


/* How It Works */
.sol-how-section {
    background: #f6f1f8;
    padding: 4rem 0 4.5rem;
}

.sol-how-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sol-how-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d76da8;
}

.sol-how-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.15;
    color: #2f2435;
    letter-spacing: -0.02em;
}

.sol-how-header {
    margin-bottom: 2.75rem;
}

.sol-how-card {
    height: 100%;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.35rem 1.35rem 1.5rem;
    box-shadow: 0 10px 32px rgba(72, 40, 88, 0.08);
    border: 1px solid rgba(215, 109, 168, 0.12);
}

.sol-how-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 11.5rem;
    margin-bottom: 1.25rem;
    padding: 0.6rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #f9f3fc;
}

.sol-how-card-visual--animated {
    position: relative;
}

.sol-how-card-visual--animated::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: var(--hiw-placeholder);
    background-repeat: no-repeat;
    background-position: center;
    background-size: calc(100% - 1.2rem) auto;
    pointer-events: none;
}

.sol-how-card-visual--animated .sol-how-card-gif {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.sol-how-card-image {
    display: block;
    width: 100%;
    max-width: 15.5rem;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.sol-how-card-gif {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sol-how-card-gif.is-loaded {
    opacity: 1;
}

.sol-how-step {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #d76da8;
}

.sol-how-card-title {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    color: #2f2435;
}

.sol-how-card-desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #7d6684;
}

/* Mock UI — step 1 */
.sol-how-mock-search-bar {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 15rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(72, 40, 88, 0.1);
    border: 1px solid rgba(215, 109, 168, 0.15);
}

.sol-how-mock-avatar {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea92bd, #b988bb);
}

.sol-how-mock-avatar-lg {
    width: 2.75rem;
    height: 2.75rem;
}

.sol-how-mock-handle {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a3d50;
}

/* Mock UI — step 2 */
.sol-how-mock--profile {
    width: 100%;
    max-width: 14rem;
}

.sol-how-mock-profile-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.sol-how-mock-profile-lines span {
    display: block;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(167, 130, 180, 0.35);
}

.sol-how-mock-profile-lines span:first-child {
    width: 5.5rem;
    margin-bottom: 0.35rem;
}

.sol-how-mock-profile-lines span.short {
    width: 3.25rem;
}

.sol-how-mock-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sol-how-mock-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
}

.sol-how-mock-list li:last-child {
    margin-bottom: 0;
}

.sol-how-mock-list .dot {
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #d76da8;
}

.sol-how-mock-list li > span:last-child {
    display: block;
    flex: 1;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(167, 130, 180, 0.28);
}

.sol-how-mock-list li > span.short {
    max-width: 60%;
}

/* Mock UI — step 3 */
.sol-how-mock--notify {
    width: 100%;
    max-width: 14.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sol-how-mock-notice {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 4px 14px rgba(72, 40, 88, 0.08);
    border: 1px solid rgba(215, 109, 168, 0.1);
}

.sol-how-mock-notice--green {
    border-color: rgba(72, 168, 110, 0.25);
}

.sol-how-mock-notice--fade {
    opacity: 0.72;
}

.sol-how-mock-notice-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6bc48a, #4fa872);
}

.sol-how-mock-notice-icon--user {
    background: linear-gradient(135deg, #ea92bd, #c988bb);
    font-size: 0;
}

.sol-how-mock-notice-icon--user::after {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #fff;
}

.sol-how-mock-notice-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #4a3d50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 992px) {
    .sol-how-section {
        padding: 5rem 0 5.5rem;
    }

    .sol-how-inner {
        padding: 0 2rem;
    }

    .sol-how-header {
        margin-bottom: 3.25rem;
    }
}

@media only screen and (max-width: 767px) {
    .sol-how-section {
        padding: 3rem 0 3.5rem;
    }

    .sol-how-header {
        margin-bottom: 2rem;
    }

    .sol-how-card {
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
}


/* TikTok social proof */
.sol-tiktok-section {
    overflow-x: clip;
    background: #fff;
    padding: 4rem 0 4.5rem;
    border-bottom: 1px solid #ebe3ef;
}

.sol-tiktok-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sol-tiktok-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d76da8;
}

.sol-tiktok-title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.15;
    color: #2f2435;
    letter-spacing: -0.02em;
}

.sol-tiktok-subtitle {
    margin: 0 auto;
    max-width: 32rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #7d6684;
}

.sol-tiktok-header {
    margin-bottom: 2.5rem;
}

.sol-tiktok-grid-wrap {
    overflow: hidden;
}

.sol-tiktok-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
}

.sol-tiktok-thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #e8dce9;
    box-shadow: 0 6px 18px rgba(72, 40, 88, 0.1);
}

.sol-tiktok-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sol-tiktok-thumb--1 { background: linear-gradient(160deg, #f0c4d8 0%, #c988bb 100%); }
.sol-tiktok-thumb--2 { background: linear-gradient(160deg, #d4c4f0 0%, #9b7bb8 100%); }
.sol-tiktok-thumb--3 { background: linear-gradient(160deg, #fcd9b0 0%, #e486b5 100%); }
.sol-tiktok-thumb--4 { background: linear-gradient(160deg, #b8d4f5 0%, #a685bc 100%); }
.sol-tiktok-thumb--5 { background: linear-gradient(160deg, #f5b8d4 0%, #da89b8 100%); }
.sol-tiktok-thumb--6 { background: linear-gradient(160deg, #c9e8f5 0%, #b988bb 100%); }
.sol-tiktok-thumb--7 { background: linear-gradient(160deg, #ffe8a8 0%, #ea92bd 100%); }
.sol-tiktok-thumb--8 { background: linear-gradient(160deg, #e8b8f0 0%, #8f6a9e 100%); }
.sol-tiktok-thumb--9 { background: linear-gradient(160deg, #ffc8e0 0%, #d48dbb 100%); }
.sol-tiktok-thumb--10 { background: linear-gradient(160deg, #d8f0e8 0%, #c988bb 100%); }

.sol-tiktok-logo {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 0.35rem;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    backdrop-filter: blur(4px);
}

.sol-tiktok-logo svg {
    width: 0.95rem;
    height: 0.95rem;
}

.sol-tiktok-views {
    position: absolute;
    left: 0.45rem;
    bottom: 0.45rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem 0.45rem 0.2rem 0.3rem;
    border-radius: 0.35rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(4px);
}

.sol-tiktok-play {
    flex-shrink: 0;
    opacity: 0.95;
}

@media (min-width: 1200px) {
    .sol-tiktok-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sol-tiktok-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sol-tiktok-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .sol-tiktok-section {
        padding: 3rem 0 3.25rem;
    }

    .sol-tiktok-header {
        margin-bottom: 1.75rem;
    }

    .sol-tiktok-grid-wrap {
        padding: 0 0.25rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sol-tiktok-grid-wrap::-webkit-scrollbar {
        display: none;
    }

    .sol-tiktok-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.55rem;
        width: max-content;
        padding-bottom: 0.25rem;
    }

    .sol-tiktok-thumb {
        flex: 0 0 7.5rem;
        width: 7.5rem;
    }
}


/* Landing FAQ accordion */
.sol-faq-section {
    background: #f6f1f8;
    padding: 4rem 0 4.5rem;
    border-top: 1px solid #e8dde9;
}

.sol-faq-inner {
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sol-faq-header {
    margin-bottom: 2rem;
    text-align: center;
}

.sol-faq-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #d76da8;
}

.sol-faq-title {
    margin: 0 auto;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.15;
    color: #2f2435;
    letter-spacing: -0.02em;
    max-width: 20ch;
}

.sol-faq-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 1.15rem;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0 0 1.25rem;
    --bs-accordion-active-color: #2f2435;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-icon-width: 1rem;
}

.sol-faq-item {
    border: none;
    border-bottom: 1px solid #e8dde9;
    background: transparent;
}

.sol-faq-item:first-child {
    border-top: 1px solid #e8dde9;
}

.sol-faq-accordion .accordion-button {
    font-size: 1.02rem;
    font-weight: 700;
    color: #2f2435;
    background: transparent;
    box-shadow: none;
}

.sol-faq-accordion .accordion-button:not(.collapsed) {
    color: #2f2435;
    background: transparent;
    box-shadow: none;
}

.sol-faq-accordion .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
    filter: none;
    opacity: 0.55;
}

.sol-faq-accordion .accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #7d6684;
    padding-top: 0;
    padding-bottom: 1.25rem;
    max-width: 42rem;
}

.sol-faq-more {
    margin: 2rem 0 0;
    font-size: 0.92rem;
}

.sol-faq-more a {
    color: #7d6684;
    text-decoration: none;
    font-weight: 600;
}

.sol-faq-more a:hover {
    color: #d76da8;
}

@media (min-width: 992px) {
    .sol-faq-section {
        padding: 5rem 0 5.5rem;
    }

    .sol-faq-inner {
        padding: 0 2rem;
    }

    .sol-faq-header {
        margin-bottom: 2.5rem;
    }

    .sol-faq-accordion .accordion-button {
        font-size: 1.08rem;
    }
}

@media only screen and (max-width: 575px) {
    .sol-faq-section {
        padding: 3rem 0 3.5rem;
    }

    .sol-faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding-right: 1.75rem;
    }
}


/* Landing bottom CTA */
.sol-cta-section {
    margin-bottom: 0;
    background: linear-gradient(
            135deg,
            #a685bc 0%,
            #c988bb 35%,
            #da89b8 65%,
            #ea92bd 100%
    );
    padding: 4.5rem 0 5rem;
    color: #fff;
}

.sol-cta-inner {
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sol-cta-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.02em;
}

.sol-cta-subtitle {
    margin: 0 auto 2rem;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.sol-cta-search {
    width: 100%;
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.sol-cta-search-inner {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(50, 20, 60, 0.2);
}

.sol-cta-search-prefix {
    flex-shrink: 0;
    padding-left: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #9a9a9a;
}

.sol-cta-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    color: #333;
    font-size: 1.05rem;
    padding: 0.65rem 0.25rem;
    outline: none;
    box-shadow: none;
}

.sol-cta-search-input::placeholder {
    color: #b0b0b0;
}

.sol-cta-search-btn {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom, #ea92bd, #d76da8);
    color: #fff;
    font-size: 1rem;
    white-space: nowrap;
}

.sol-cta-search-btn:hover,
.sol-cta-search-btn:focus {
    background: linear-gradient(to bottom, #f0a0c8, #e486b5);
    color: #fff;
}

/* Mobile floating search (landing homepage only) */
.sol-floating-search {
    display: none;
}

@media (max-width: 991.98px) {
    .sol-floating-search {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        padding: 0.35rem 0.75rem calc(0.35rem + env(safe-area-inset-bottom));
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        transform: translateY(120%);
        transition: transform 0.22s ease;
    }

    .sol-floating-search.is-visible {
        transform: translateY(0);
    }

    .sol-floating-search-form {
        width: 100%;
        margin: 0;
    }

    .sol-floating-search-inner {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.4rem;
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(50, 20, 60, 0.18);
    }

    .sol-floating-search-prefix {
        flex-shrink: 0;
        padding-left: 0.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #9a9a9a;
    }

    .sol-floating-search-input {
        flex: 1 1 auto;
        min-width: 0;
        border: none;
        background: transparent;
        color: #333;
        font-size: 1.02rem;
        padding: 0.62rem 0.25rem;
        outline: none;
        box-shadow: none;
    }

    .sol-floating-search-input::placeholder {
        color: #b0b0b0;
    }

    .sol-floating-search-btn {
        flex-shrink: 0;
        border: none;
        border-radius: 999px;
        padding: 0.72rem 1.35rem;
        background: linear-gradient(to bottom, #ea92bd, #d76da8);
        color: #fff;
        font-size: 0.98rem;
        white-space: nowrap;
    }

    .sol-floating-search-btn:hover,
    .sol-floating-search-btn:focus {
        background: linear-gradient(to bottom, #f0a0c8, #e486b5);
        color: #fff;
    }

    body.sol-floating-search-visible {
        padding-bottom: calc(5.6rem + env(safe-area-inset-bottom));
    }
}

.sol-cta-badges {
    gap: 0.65rem 1.25rem;
    margin: 0 0 1.25rem;
    padding: 0;
}

.sol-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.sol-cta-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: rgba(107, 196, 138, 0.95);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
}

.sol-cta-secure {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.sol-cta-lock {
    margin-right: 0.25rem;
}

@media only screen and (max-width: 575px) {
    .sol-cta-section {
        padding: 3.25rem 0 3.75rem;
    }

    .sol-cta-search-inner {
        flex-wrap: wrap;
        align-items: center;
        border-radius: 1.25rem;
        padding: 0.55rem 0.65rem;
        gap: 0.4rem;
    }

    .sol-cta-search-prefix {
        flex-shrink: 0;
        padding-left: 0.5rem;
    }

    .sol-cta-search-input {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        padding: 0.55rem 0.25rem;
    }

    .sol-cta-search-btn {
        flex: 1 1 100%;
        width: 100%;
        margin-top: 0.1rem;
    }

    .sol-cta-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}


/* Landing page footer (below CTA) */
.sol-landing-footer {
    margin-top: 0;
    margin-bottom: 0;
    background: #2a2230;
    padding: 1.75rem 0 2rem;
}

.sol-cta-section + script + .sol-landing-footer,
.sol-cta-section + .sol-landing-footer {
    margin-top: 0;
}


.sol-landing-footer-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sol-landing-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.85rem;
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
    text-align: center;
}

.sol-landing-footer-sep {
    color: rgba(232, 220, 233, 0.45);
    user-select: none;
}

.sol-landing-footer-links a {
    color: #e8dce9;
    text-decoration: none;
}

.sol-landing-footer-links a:hover {
    color: #ffe769;
}


/* /analize/, /reviews/, /subscribe/ & /what-will/ — flow screens */
body.sol-layout-sticky-footer.sol-analize-body,
body.sol-layout-sticky-footer.sol-reviews-body,
body.sol-layout-sticky-footer.sol-subscribe-body,
body.sol-layout-sticky-footer.sol-what-will-body {
    background: none !important;
}

body.sol-layout-sticky-footer.sol-analize-body .sol-site-shell,
body.sol-layout-sticky-footer.sol-reviews-body .sol-site-shell,
body.sol-layout-sticky-footer.sol-subscribe-body .sol-site-shell,
body.sol-layout-sticky-footer.sol-what-will-body .sol-site-shell {
    background: linear-gradient(
            180deg,
            #ff6eb5 0%,
            #e878c4 18%,
            #c982d2 38%,
            #9a7ad0 58%,
            #6d6ec8 78%,
            #5a5fbf 100%
    );
    background-attachment: scroll;
    color: #fff;
    overflow-x: clip;
}

body.sol-analize-body.sol-layout-sticky-footer .sol-site-shell > .container-fluid,
body.sol-reviews-body.sol-layout-sticky-footer .sol-site-shell > .container-fluid,
body.sol-subscribe-body.sol-layout-sticky-footer .sol-site-shell > .container-fluid,
body.sol-what-will-body.sol-layout-sticky-footer .sol-site-shell > .container-fluid {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    max-width: 100%;
    overflow-x: clip;
}

body.sol-analize-body .sol-layout-main,
body.sol-reviews-body .sol-layout-main,
body.sol-subscribe-body .sol-layout-main,
body.sol-what-will-body .sol-layout-main {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

body.sol-analize-body .sol-layout-inner-row,
body.sol-reviews-body .sol-layout-inner-row,
body.sol-subscribe-body .sol-layout-inner-row,
body.sol-what-will-body .sol-layout-inner-row {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.sol-analize-flow {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    padding: 0.5rem 0 2rem;
}

.sol-analize-prep {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 12rem;
    padding: 2rem 1rem;
    text-align: center;
}

.sol-analize-prep-spinner {
    width: 3.125rem;
    height: 3.125rem;
    border: 0.35rem solid rgba(255, 255, 255, 0.35);
    border-bottom-color: #fff;
    border-radius: 50%;
    animation: spinner 0.9s linear infinite;
}

.sol-analize-prep-label {
    margin: 1.25rem 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

.sol-analize-error {
    width: 100%;
    padding: 0.5rem 0 1rem;
}

.sol-analize-error-body {
    margin: 0;
    padding: 0 2em;
    font-size: 1em;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
}

.sol-analize-error-recheck {
    margin: 0.75rem 0 1.5rem;
    padding: 0 2em;
    font-size: 1em;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
}

.sol-analize-retry-search {
    max-width: 100%;
    margin: 2rem auto 0;
}

.sol-analize-page {
    width: 100%;
    padding: 0;
}

.sol-analize-profile {
    padding-top: 0.5rem;
}

.sol-analize-avatar-wrap {
    position: relative;
    width: 4.625rem;
    height: 4.625rem;
}

.sol-analize-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 120, 190, 0.35));
    z-index: 0;
}

.sol-analize-avatar,
.sol-analize-avatar-fallback {
    position: relative;
    z-index: 1;
    width: 4.625rem;
    height: 4.625rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.92);
    object-fit: cover;
    background: #f2dce8;
}

.sol-analize-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-family: 'MontserratBold', 'Montserrat', Arial, sans-serif;
    color: #7a4f8f;
}

.sol-analize-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.sol-analize-progress-block {
    margin-top: 1.75rem;
}

.sol-analize-progress-label,
.sol-analize-progress-value {
    font-size: 0.95rem;
    color: #fff;
}

.sol-analize-progress-track {
    margin-top: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.sol-analize-progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #80d788;
}

.sol-analize-steps {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sol-analize-step {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    border-radius: 1rem;
    background: #fff;
    color: #3a3340;
    box-shadow: 0 8px 24px rgba(35, 20, 45, 0.12);
    transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}

.sol-analize-step.is-pending {
    background: rgba(255, 255, 255, 0.38);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.sol-analize-step.is-pending .sol-analize-step-icon {
    color: rgba(255, 255, 255, 0.85);
}

.sol-analize-step-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    color: #6f5a78;
}

.sol-analize-step-text {
    flex: 1 1 auto;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 500;
}

.sol-analize-step-status {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sol-analize-step-check {
    display: none;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: #f4d88e;
    color: #1a1a1a;
    align-items: center;
    justify-content: center;
}

.sol-analize-step.is-done .sol-analize-step-check {
    display: inline-flex;
}

.sol-analize-step.is-pending .sol-analize-step-status::after {
    content: '';
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: #eaeaea;
    border: none;
    box-sizing: border-box;
}

.sol-analize-next-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-family: 'NunitoBold', 'Nunito', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: #6a6968;
    background: #c5c4c3;
    pointer-events: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.sol-analize-next-btn.is-ready {
    pointer-events: auto;
    color: #2a2230;
    background: #ffea80;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.sol-analize-next-btn.is-ready:hover,
.sol-analize-next-btn.is-ready:focus {
    color: #2a2230;
    background: #fff0a8;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .sol-analize-page {
        max-width: 28rem;
        padding-top: 1rem;
    }

    .sol-analize-title {
        font-size: 1rem;
    }
}

@media (min-height: 701px) {
    body.sol-analize-body .sol-analize-profile {
        padding-bottom: 2rem;
    }
}

/* /reviews/ — Wall of Love carousel */
.sol-reviews-flow {
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    padding: 0.35rem 0 2rem;
}

.sol-reviews-top {
    flex-shrink: 0;
}

.sol-reviews-badge-wrap {
    margin-bottom: 0.25rem;
}

.sol-reviews-badge {
    display: inline-block;
    width: auto;
    max-width: 7.5rem;
    height: auto;
    max-height: 3.75rem;
    object-fit: contain;
}

body.sol-reviews-body .sol-reviews-title.sol-subscribe-headline {
    margin: 1.7rem 0 1.5rem;
    font-size: 2.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.sol-reviews-title-line {
    display: block;
}

.sol-reviews-social {
    margin-bottom: 0;
}

.sol-reviews-users-img {
    display: block;
    width: auto;
    max-width: 13.5rem;
    height: auto;
    max-height: 2.75rem;
    margin: 0 auto 0.35rem;
    object-fit: contain;
}

.sol-reviews-carousel,
.sol-reviews-track,
.sol-reviews-panel {
    background: transparent;
}

.sol-reviews-carousel {
    width: 100%;
}

.sol-reviews-track {
    width: 100%;
}

.sol-reviews-panel {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.sol-reviews-panel.is-active {
    display: flex;
}

.sol-reviews-users-count {
    margin: 0 0 1.15rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
}

.sol-reviews-card {
    padding: 0.95rem 1rem 1rem;
    border-radius: 1rem;
    background: #fff;
    color: #2a2230;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sol-reviews-card-head {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    min-width: 0;
}

.sol-reviews-card-name {
    flex-shrink: 0;
    font-size: 0.95rem;
    color: #4a2d6e;
    white-space: nowrap;
}

.sol-reviews-card-date {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.72rem;
    color: #9a8fa8;
    white-space: nowrap;
}

.sol-reviews-stars {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #f4c430;
}

.sol-reviews-card-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #3d3545;
}

.sol-reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 2.1rem;
    margin-bottom: 1.45rem;
}

.sol-reviews-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sol-reviews-dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.sol-reviews-next-btn {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 999px;
    text-align: center;
    font-family: 'NunitoBold', 'Nunito', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: #2a2230;
    background: #ffea80;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease, transform 0.2s ease;
}

.sol-reviews-next-btn:hover,
.sol-reviews-next-btn:focus {
    color: #2a2230;
    background: #fff0a8;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .sol-reviews-flow {
        max-width: 28rem;
        padding-top: 0.75rem;
    }

    body.sol-reviews-body .sol-reviews-title.sol-subscribe-headline {
        margin-top: 2rem;
        margin-bottom: 1.85rem;
        font-size: 2.65rem;
    }

    body.sol-reviews-body .sol-reviews-users-count {
        margin-bottom: 1.25rem;
    }
}

@media (min-height: 701px) {
    body.sol-reviews-body .sol-reviews-title.sol-subscribe-headline {
        margin-top: 2.2rem;
        margin-bottom: 2rem;
        font-size: 2.75rem;
    }

    body.sol-reviews-body .sol-reviews-users-count {
        margin-bottom: 1.35rem;
    }
}

@media (min-height: 841px) {
    .sol-reviews-badge-wrap {
        margin-bottom: 4rem;
    }

    .sol-reviews-badge {
        max-width: 9rem;
        max-height: 4.5rem;
    }
}

/* /subscribe/ — subscription offer */
.sol-subscribe-page {
    position: relative;
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    padding: 0.5rem 0 2rem;
}

.sol-subscribe-phone-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.sol-subscribe-phone {
    width: min(100%, 15.5rem);
    padding: 0.32rem 0.32rem 0;
    border-radius: 1.75rem 1.75rem 0 0;
    background: #3b3c3a;
    box-shadow: 0 12px 32px rgba(30, 15, 50, 0.22);
    margin-bottom: -0.85rem;
}

.sol-subscribe-phone-screen {
    border-radius: 1.25rem 1.25rem 0 0;
    background: #fff;
    padding: 0.85rem 0.75rem 0;
    color: #3a3340;
}

.sol-subscribe-phone-avatar,
.sol-subscribe-phone-avatar-fallback {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    background: #e8e0ea;
}

.sol-subscribe-phone-avatar-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: 'MontserratBold', 'Montserrat', Arial, sans-serif;
    color: #7a4f8f;
}

.sol-subscribe-phone-handle {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: #2f2735;
}

.sol-subscribe-phone-tabs {
    display: flex;
    gap: 0.35rem;
    margin: 0.75rem 0 0.65rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: #f0eef2;
}

.sol-subscribe-phone-tab {
    flex: 1 1 50%;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-align: center;
    color: #8a8490;
}

.sol-subscribe-phone-tab.is-active {
    background: #fff;
    color: #2f2735;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sol-subscribe-phone-stats {
    display: flex;
    flex-direction: column;
    gap: 0.02rem;
}

.sol-subscribe-phone-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.28rem 0.15rem;
    border-bottom: 1px solid #f0edf2;
    font-size: 0.7rem;
    color: #4a4250;
}

.sol-subscribe-phone-stat--last,
.sol-subscribe-phone-stat:last-child {
    border-bottom: none;
    padding-bottom: 0.45rem;
}

.sol-subscribe-phone-stat-value {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #b8b2bc;
}

.sol-subscribe-phone-stat-blur {
    filter: blur(4px);
    user-select: none;
}

.sol-subscribe-headline {
    margin: 2.35rem 0 0;
    font-family: 'NunitoBlack', 'Nunito', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.88rem;
    line-height: 1.15;
    color: #ffe768;
}

.sol-subscribe-subhead {
    font-family: 'NunitoBold', 'Nunito', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #ffe768;
}

.sol-subscribe-features-link {
    display: block;
    width: 100%;
    margin: 0.85rem auto 2rem;
    padding: 0;
    border: none;
    background: none;
    font-family: 'NunitoSemiBold', 'Nunito', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

@media (max-height: 700px) {
    body.sol-subscribe-body .sol-subscribe-headline {
        margin-top: 1.35rem;
    }

    body.sol-subscribe-body .sol-subscribe-features-link {
        margin-top: 0.55rem;
        margin-bottom: 1.15rem;
    }
}

@media (min-height: 701px) {
    body.sol-subscribe-body .sol-subscribe-headline {
        margin-top: 3rem;
    }

    body.sol-subscribe-body .sol-subscribe-features-link {
        margin-top: 1.85rem;
        margin-bottom: 2.3rem;
    }
}

.sol-subscribe-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.58rem;
    margin-top: 0.25rem;
    margin-bottom: 0.9rem;
}

.sol-subscribe-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 5.3rem;
    padding: 0.48rem 0.48rem 0.38rem;
    border: 2px solid #e5e5e7;
    border-radius: 0.9rem;
    background: #fff;
    color: #1a1a1a;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sol-subscribe-plan--weekly {
    min-height: 4.5rem;
}

.sol-subscribe-plan--yearly {
    grid-column: 1 / -1;
    min-height: 4.15rem;
}

.sol-subscribe-plan.is-selected {
    border-color: #82cbad;
}

.sol-subscribe-plan-badge {
    position: absolute;
    top: -0.48rem;
    left: 0.4rem;
    z-index: 2;
    margin: 0;
    padding: 0.12rem 0.38rem;
    border: 2px solid #fff;
    border-radius: 999px;
    background: linear-gradient(180deg, #c8f07a 0%, #8fd96a 45%, #5fc94f 100%);
    font-family: 'NunitoExtraBold', 'Nunito', Arial, sans-serif;
    font-weight: 800;
    font-size: 0.58rem;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.sol-subscribe-plan-label {
    width: 100%;
    margin-top: 0.18rem;
    font-family: 'NunitoBlack', 'Nunito', Arial, sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    color: #765da8;
    letter-spacing: 0.03em;
}

.sol-subscribe-plan-price {
    width: 100%;
    margin-top: 0.15rem;
    font-family: 'NunitoExtraBold', 'Nunito', Arial, sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    line-height: 1.1;
    color: #000;
}

.sol-subscribe-plan-note {
    width: 100%;
    margin-top: 0.22rem;
    padding-top: 0;
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.62rem;
    color: #000;
}

.sol-subscribe-plan--weekly .sol-subscribe-plan-price {
    margin-top: 0.22rem;
}

.sol-subscribe-cta {
    display: block;
    width: 100%;
    padding: 0.68rem 1.1rem;
    border-radius: 999px;
    background: #ffea80;
    font-family: 'NunitoBold', 'Nunito', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.16);
    transition: background 0.2s ease, transform 0.2s ease;
}

.sol-subscribe-cta--shine {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.sol-subscribe-cta--shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 95%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 28%,
        rgba(255, 255, 255, 0.92) 50%,
        rgba(255, 255, 255, 0.2) 72%,
        transparent 100%
    );
    transform: skewX(-18deg);
    animation: sol-subscribe-cta-shine 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sol-subscribe-cta-shine {
    0%,
    18% {
        left: -130%;
    }

    42%,
    100% {
        left: 165%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sol-subscribe-cta--shine::after {
        animation: none;
    }
}

.sol-subscribe-cta:hover,
.sol-subscribe-cta:focus {
    color: #1a1a1a;
    background: #fff0a8;
    transform: translateY(-1px);
}

.sol-subscribe-what-i-get {
    width: 100%;
    margin: 0;
    padding: 0;
}

.sol-subscribe-what-i-get-sep {
    height: 1px;
    margin: 2.5rem 0;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.38);
    opacity: 1;
}

.sol-subscribe-what-i-get-title {
    margin: 0 0 1.15rem;
    font-family: 'NunitoBold', 'Nunito', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.96);
}

.sol-subscribe-what-i-get-screens {
    width: 100%;
    max-width: 22.5rem;
    margin: 0 auto;
    padding: 1.35rem 1.1rem 1.5rem;
    border-radius: 1.35rem;
    background: #765da8;
    box-shadow: 0 12px 32px rgba(118, 93, 168, 0.28);
    overflow: hidden;
}

.sol-subscribe-what-i-get-screen {
    width: 100%;
    padding: 0;
}

.sol-subscribe-what-i-get-screens .sol-what-i-get-slide--features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.sol-subscribe-what-i-get-divider {
    height: 1px;
    margin: 2.5rem 0;
    background: rgba(255, 255, 255, 0.28);
}

.sol-subscribe-what-i-get-screens .sol-what-i-get-slide-title {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.sol-subscribe-what-i-get-screens .sol-what-i-get-feature-list {
    gap: 0.8rem;
}

@media (max-width: 767.98px) {
    .sol-subscribe-what-i-get-screens {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .sol-subscribe-what-i-get-screens .sol-what-i-get-slide-title {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .sol-subscribe-what-i-get-screens .sol-what-i-get-slide-media {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .sol-subscribe-what-i-get-screens .sol-what-i-get-slide-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .sol-subscribe-what-i-get-screens .sol-what-i-get-feature-list {
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
}

@media (min-width: 768px) {
    .sol-subscribe-what-i-get-screens .sol-what-i-get-slide-title {
        font-size: 1.9rem;
    }
}

.sol-subscribe-note {
    margin: 0.85rem 0 0;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 768px) {
    .sol-subscribe-page {
        max-width: 28rem;
    }

    .sol-subscribe-headline {
        font-size: 2.08rem;
    }

    .sol-subscribe-subhead {
        font-size: 1.3rem;
    }
}

/* Subscribe — What I Get modal */
.sol-what-i-get-modal-dialog {
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
}

.sol-what-i-get-modal {
    position: relative;
    border: none;
    border-radius: 1.35rem;
    padding: 1.35rem 1.1rem 1.15rem;
    background: #765da8;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.sol-what-i-get-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: none;
    color: #fff;
    opacity: 0.95;
    cursor: pointer;
}

.sol-what-i-get-modal-close:hover,
.sol-what-i-get-modal-close:focus {
    color: #fff;
    opacity: 1;
}

.sol-what-i-get-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 1.1rem;
    overflow: visible;
}

.sol-what-i-get-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.sol-what-i-get-nav:hover:not(:disabled),
.sol-what-i-get-nav:focus:not(:disabled) {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.sol-what-i-get-nav:disabled {
    opacity: 0.28;
    cursor: default;
}

.sol-what-i-get-nav--prev {
    left: 0;
}

.sol-what-i-get-nav--next {
    right: 0;
}

.sol-what-i-get-carousel {
    display: block;
    overflow: hidden;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding: 2.1rem 0 0;
    min-height: 24.5rem;
}

.sol-what-i-get-track {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: max-content;
    min-height: 21rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.sol-what-i-get-slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.sol-what-i-get-slide-title {
    margin: 0 1.75rem 0.85rem;
    padding: 0;
    font-family: 'NunitoBlack', 'Nunito', Arial, sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 1.15;
    text-align: center;
    color: #f7e275;
}

.sol-what-i-get-slide-media {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.45rem;
    margin-bottom: 0.15rem;
    padding-top: 0.25rem;
    padding-bottom: 0;
}

.sol-what-i-get-slide--features {
    display: grid;
    place-content: center;
    align-items: stretch;
    align-self: stretch;
    height: 100%;
    min-height: 21rem;
    padding-top: 0;
    padding-bottom: 0;
}

.sol-what-i-get-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin: 0;
}

.sol-what-i-get-feature-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.7rem;
    border-radius: 1rem;
    background: #fff;
    text-align: left;
}

.sol-what-i-get-feature-icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: auto;
    object-fit: contain;
}

.sol-what-i-get-feature-text {
    flex: 1 1 auto;
    margin: 0;
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.38;
    color: #2a2230;
}

.sol-what-i-get-slide-image {
    display: block;
    width: 100%;
    max-width: 19.5rem;
    height: auto;
    margin: 0 auto;
}

.sol-what-i-get-modal .sol-what-i-get-slide-image {
    max-width: min(16.5rem, calc(100% - 4.5rem));
}

.sol-what-i-get-modal .sol-what-i-get-slide--features .sol-what-i-get-feature-list {
    width: 100%;
    max-width: calc(100% - 4.5rem);
    margin-left: auto;
    margin-right: auto;
}

.sol-what-i-get-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.35rem;
    margin-bottom: 0.65rem;
    padding: 0.5rem 0;
}

.sol-what-i-get-dot {
    width: 0.65rem;
    height: 0.65rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sol-what-i-get-dot.is-active {
    background: #f7e275;
    transform: scale(1.08);
}

#solWhatIGetModal .modal-backdrop.show {
    opacity: 0.55;
}

@media (min-width: 768px) {
    .sol-what-i-get-modal-dialog {
        max-width: 24rem;
    }

    .sol-what-i-get-slide-title {
        font-size: 1.9rem;
    }
}

/* /what-will/ onboarding — What I Get carousel (same slides as subscribe modal) */
.sol-what-will-flow {
    width: 100%;
    max-width: 22.5rem;
    margin: 0 auto;
    padding: 0.5rem 0 1.5rem;
    box-sizing: border-box;
}

.sol-what-will-panel {
    position: relative;
    border-radius: 1.35rem;
    padding: 1.35rem 1.1rem 1rem;
    background: #765da8;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

body.sol-what-will-body .sol-what-will-panel .sol-what-i-get-slide-image {
    max-width: min(16.5rem, calc(100% - 4.5rem));
}

body.sol-what-will-body .sol-what-will-panel .sol-what-i-get-slide--features .sol-what-i-get-feature-list {
    width: 100%;
    max-width: calc(100% - 4.5rem);
    margin-left: auto;
    margin-right: auto;
}

.sol-what-will-next-btn {
    display: block;
    width: 100%;
    margin-top: 1.15rem;
    padding: 0.95rem 1.25rem;
    border: none;
    border-radius: 999px;
    text-align: center;
    font-family: 'NunitoBold', 'Nunito', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    color: #2a2230;
    background: #ffea80;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.sol-what-will-next-btn:hover,
.sol-what-will-next-btn:focus {
    color: #2a2230;
    background: #fff0a8;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .sol-what-will-flow {
        max-width: 24rem;
        padding-top: 0.75rem;
    }
}

/* Dashboard billing — What I Get */
.sol-billing-what-i-get-link {
    display: inline;
    margin-top: 0.35rem;
    padding: 0;
    border: none;
    background: none;
    font-family: 'NunitoSemiBold', 'Nunito', Arial, sans-serif;
    font-weight: 600;
    font-size: inherit;
    letter-spacing: 0.04em;
    color: #5484c4;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.sol-billing-what-i-get-link:hover,
.sol-billing-what-i-get-link:focus {
    color: #3d6aa8;
}

.sol-billing-what-i-get-section .sol-billing-what-i-get-title {
    margin-bottom: 1.25rem;
}

.sol-billing-what-i-get-screens {
    max-width: 22.5rem;
    margin: 0 auto 2.5rem;
    padding: 1.35rem 1.1rem 1.5rem;
    border-radius: 1.35rem;
    background: #765da8;
    box-shadow: 0 12px 32px rgba(118, 93, 168, 0.28);
    overflow: hidden;
}

.sol-billing-what-i-get-screen {
    width: 100%;
    padding: 0;
    flex: none;
    min-width: auto;
    min-height: auto;
}

.sol-billing-what-i-get-screens .sol-what-i-get-slide--features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.sol-billing-what-i-get-divider {
    height: 1px;
    margin: 3em 0;
    background: rgba(255, 255, 255, 0.28);
}

.sol-billing-what-i-get-screens .sol-what-i-get-slide-title {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.sol-billing-what-i-get-screens .sol-what-i-get-feature-list {
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .sol-billing-what-i-get-screens .sol-what-i-get-slide-title {
        font-size: 1.9rem;
    }
}

/* Dashboard — mobile sidebar (offcanvas) */
.sol-dashboard-menu-toggler {
    padding: 0.35rem 0.5rem;
    margin-right: 0.35rem;
}

.sol-dashboard-offcanvas {
    --bs-offcanvas-width: min(20rem, 88vw);
    background: #f7f6f4;
}

.sol-dashboard-offcanvas-header {
    border-bottom: 1px solid #dee1f4;
    padding: 1rem 1.1rem;
}

.sol-dashboard-offcanvas-header .offcanvas-title {
    font-size: 1.1rem;
    color: #2a2230;
}

.sol-dashboard-offcanvas-body {
    padding: 0.75rem 1rem 1.5rem;
}

.sol-dashboard-offcanvas-body .sol-dash-sidebar-link a {
    color: inherit;
}

@media (min-width: 992px) {
    .sol-dashboard-main-col {
        border-left: 1px solid #dee1f4;
    }
}
