:root {
    --bg-page: #f8f3ee;
    --bg-light: #ffffff;
    --bg-soft: #fff7f4;
    --bg-dark: #151515;
    --text-main: #222222;
    --text-muted: #555555;
    --accent-light: #ffd3cc;
    --accent: #ff6b5b;
    --accent-dark: #e45447;
    --border-soft: #e0d8d0;
    --sussess: #1a6820;
    --radius-lg: 14px;
    --radius-md: 10px;
    --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: var(--accent-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.top-bar {
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-soft);
    padding: 10px 16px;
    font-size: 15px;
}

.top-bar-inner, .footer-inner {
    max-width: 970px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.top-bar-inner .logo img {
    width: 260px;
    display: block;
}

.badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffe3dc;
    color: #b64232;
    font-weight: 600;
    font-size: 13px;
}

.page {
    max-width: 970px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}

.section {
    margin-bottom: 40px;
}

.hero {
    display: flex;
    gap: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

.hero-text {
    flex: 1 1 360px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    padding: 0;
    flex: 1 1 260px;
    min-width: 260px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex !important;
    align-items: stretch;
    justify-content: center;
}

.avatar-lg {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.avatar-lg img {
    width: 64px;
    height: 64px;
    border-radius: 1000px;
    margin-right: 1rem;
    object-fit: cover;
}
.avatar-lg p {
    font-weight: bold;
    margin: 0;
}
.avatar-lg p.small {
    font-weight: initial;
    font-size: calc(1rem - 2px);
}

.hero-image-full {
    width: 100%;
    flex: 1 1 400px;
    min-width: min(400px, 100%);
    
}

.no-border-bottom {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.no-border-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.hero-image img,
.hero-image picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-placeholder {
    width: 100%;
    padding-top: 70%;
    background-image: linear-gradient(135deg, #fbe0d8, #e8f1ff);
    position: relative;
}

.hero-image-placeholder::after {
    content: "Photo: mature couple at home, smiling with a phone nearby";
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    font-size: 13px;
    color: #333;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 8px;
    border-radius: 8px;
}

h1 {
    font-size: 34px;
    line-height: 1.25;
    margin: 0 0 16px;
}

h2 {
    font-size: 26px;
    margin: 0 0 16px;
}

h3 {
    font-size: 22px;
    margin: 0 0 12px;
}

.lede {
    font-weight: 600;
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition:
        background 0.18s ease,
        transform 0.1s ease,
        box-shadow 0.18s ease;
    min-width: min(325px , 100%);
    text-decoration: none !important;
}
.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 107, 91, 0.45);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(255, 107, 91, 0.55);
}

.btn-secondary {
    background: #ffffff;
    color: var(--accent-dark);
    border: 1px solid var(--accent);
    box-shadow: 0 0 0 rgba(255, 107, 91, 0.55);
}
.btn-secondary:hover {
    background: var(--accent-dark);
    color: #fff;
    border: 1px solid var(--accent-dark);
    box-shadow: 0 5px 12px rgba(255, 107, 91, 0.55);
}

.btn-block {
    width: 100%;
}

.muted {
    color: var(--text-muted);
}

.bullets {
    padding-left: 20px;
    margin: 0 0 18px;
}

.bullets li {
    margin-bottom: 8px;
}

.card {
    width: 100%;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-soft);
}

.subhead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.two-col {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.col {
    flex: 1 1 260px;
}

.accent-section {
    background: var(--accent-light);
    border-radius: var(--radius-lg);
    padding: 26px 24px 22px;
    box-shadow: var(--shadow-soft);
}

.accent-section h2,
.accent-section h3 {
    color: var(--accent-dark);
}

.accent-section .bullets li::marker {
    color: var(--accent);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffe3dc;
    color: #b64232;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2px;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.rating-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: #1e8c3a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}
.rating {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rating span {
    text-decoration: underline;
}
.rating img {
    width: 93px;
    margin-left: 10px;
    margin-right: 10px;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.review-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 14px 14px 16px;
    font-size: 16px;
    display: flex;
    flex-direction: column;

}
.review-card .btn-wrapper {
    margin-bottom: 0;
    margin-top: auto;
}
.review-meta {
    font-size: 14px;
    margin-bottom: 6px;
}

.stars {
    font-size: 14px;
    margin-right: 6px;
}
.stars img {
    width: 108px;
}

.verified {
    transform: translateY(2px);
    font-size: 12px;
    color: var(--sussess);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-weight: bold;
}
.verified img {
    display: block;
    margin-left: 10px;
    margin-right: 3px;
}

.split-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.split-card {
    flex: 1 1 260px;
    border-radius: var(--radius-lg);
    padding: 20px 18px 18px;
    box-shadow: var(--shadow-soft);
}

.split-card h3 {
    margin-bottom: 10px;
}

.female {
    background: #ffe9e2 !important;
}

.male {
    background: #e5f3ff !important;
}

.center {
    text-align: center;
}

.why-this-work {
    display: flex;
    gap: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
}

footer {
    background: var(--bg-page);
    border-top: 1px solid var(--border-soft);
    padding: 10px 16px;
    font-size: 15px;
}
.footer-inner {
    justify-content: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    .top-bar-inner .logo img {
        width: 210px;
    }
    .hero {
        flex-direction: column;
    }
    .hero-image-full {
        width: 100%;
        flex: 1 1 200px;
        min-width: min(200px, 100%);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


.push {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(380px , calc(100% - 30px));
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}
.push-show {
    top: 15px;
}
.push .content {
    display: flex;
    align-items: center;
}
.push p {
    margin-top: 0;
    margin-bottom: 0;
}
.push a {
    margin-top: 1rem;
}
.push .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}
.push .icon img {
    width: 64px;
}

@media (max-width: 768px) {
    .push {
        padding: 20px 12px;
    }
}

.profiles-filter,
.profiles-filter .content,
.profiles-filter .content .tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.profiles-filter {
    margin-bottom: 16px;
    padding: 16px;
}
.profiles-filter .title {
    margin-right: 2rem;
}
.profiles-filter .title h3 {
    margin-bottom: 0;
}
.profiles-filter .content {
    flex-grow: 1;
}
.profiles-filter .content .tab {
    margin-right: 2rem;
}
.profiles-filter .tab {
    gap: 0.5rem;
}
.profiles-filter a {
    color: var(--text-muted);
    min-width: auto;
    padding: 4px 14px;
}
.profiles-filter a.active,
.profiles-filter a:hover {
    background: var(--accent-light);
    color: var(--accent-dark);
}
.profiles-filter .filter {
    margin-left: auto;
}

.profiles-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.profiles-cards .card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.profiles-cards .image {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
}
.profiles-cards .image > a {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    background: rgba(15,15,15,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
}
.profiles-cards .image > a > svg {
    width: 16px;
    height: 16px;
}
.profiles-cards .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profiles-cards .medias {
    position: absolute;
    background: rgba(15,15,15,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 8px 16px;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.profiles-cards .medias svg {
    width: 16px;
    height: 16px;
    margin-right: 3px;
}
.profiles-cards .media {
    display: flex;
    justify-content: center;
    align-items: center;
}
.profiles-cards .info {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profiles-cards .info .content {
    margin-right: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.profiles-cards .info p {
    margin: 0;
    font-weight: bold;
    margin-right: 6px;
}
.profiles-cards .info .dot-online {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sussess);
    position: relative;
    opacity: 0;
    transition: all 0.3s linear;
}
.profiles-cards .info .dot-online.visible {
    opacity: 1;
}

.profiles-cards .info .dot-online:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--sussess);
    opacity: 0.5;
    animation: pulse-wave 1.6s infinite ease-out;
}
@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.profiles-cards .info .btn {
    min-width: auto;
}


.profiles-cards .card-cta {
    background: linear-gradient(169deg, #fdeeec 3.52%, #fff 65.83%);
}
.profiles-cards .card-cta .image {
    background: url(../img/bannerInSearch.webp);
    background-size: contain;
    background-position: center center;
    display: flex;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profiles-cards .card-cta .image .icon {
    width: 88px;
    height: 88px;
    position: relative;
    z-index: 4;
}
.profiles-cards .card-cta .info {
    opacity: 0;
}
.profiles-cards .card-cta .banner {
    position: absolute;
    bottom: 0;
    padding: 16px;
    text-align: center;
    width: 100%;
    z-index: 3;
}
.profiles-cards .card-cta .banner h3 {
    margin-bottom: 1.5rem;
}


.background-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    border-style: solid;
    border-color: var(--accent-light);
    border-radius: 50%;
}

.circle-xs {
    width: 136px;
    height: 136px;
    opacity: .5;
    border-width: 2px;
    filter: blur(.5px)
}

.circle-s {
    width: 200px;
    height: 200px;
    opacity: .4;
    border-width: 1px
}

.circle-m {
    width: 264px;
    height: 264px;
    opacity: .4;
    border-width: 1px
}

.circle-l {
    overflow: hidden;
    width: 336px;
    height: 336px;
    opacity: .2;
    border-width: 1px
}
.radial-shadow {
    position: absolute;
    bottom: -70px;
    width: 100%;
    height: 300px;
    pointer-events: none;
    background:radial-gradient(98.78% 90.37% at 50% 90.37%, #fff 38.27%,rgba(255,255,255,0) 94.74%);
}

@media screen and (max-width: 991px) {
    .profiles-filter {
        flex-wrap: wrap;
    }
    .profiles-filter .title {
        width: 100%;
        margin-bottom: 0.25rem;
        margin-right: 0;
    }
    .profiles-cards {
        grid-template-columns: 1fr 1fr;
    }
    .profiles-filter .content .tab {
        margin-right: 1rem;
    }
    .profiles-filter a {
        padding: 3px 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .profiles-cards .info {
        flex-wrap: wrap;
        padding: 8px 8px 16px 8px;
    }
    .profiles-cards .medias {
        padding: 8px;
    }
    .profiles-cards .info > * {
        width: 100%;
    }
    .profiles-cards .info .content {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    .profiles-cards .info p {
        font-size: 14px;
    }
    .profiles-cards .card-cta .image .icon {
        width: 64px;
        height: 64px;
    }
    .profiles-cards .card-cta .banner {
        padding: 8px 8px 16px 8px;
    }
    .profiles-cards .card-cta .banner h3 {
        font-size: 15px;
        margin-bottom: 1rem;
    }
    .profiles-cards .card-cta a {
        padding: 6px 12px;
        font-size: 14px;
    }
}


.popup-holder {
    display: none;
}
.popup {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: min(380px , calc(100% - 30px));
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    z-index: 1002;
    text-align: center;
    opacity: 0;
    transition: all 0.3s linear;
}
.popup-bg {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(15,15,15,0.5);
    position: fixed;
    z-index: 1001;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s linear;
}
.popup-holder.show {
    display: block;
}
.popup-holder.show .popup {
    top: 50%;
}
.popup-holder.show .popup ,
.popup-holder.show .popup-bg {
    opacity: 1;
}
.popup h2 {
    margin-bottom: 1.5rem;
}
.popup .btn-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}
.popup .btn img {
    margin-right: 0.5rem;
    height: 24px;
}