:root {
    --pink: #FF6B8A;
    --pink-d: #F0476C;
    --pink-soft: #FFE3EA;
    --pink-bg: #FFF1F4;
    --mint: #D4F3EC;
    --mint-d: #A9E6D8;
    --yellow: #FBE08A;
    --yellow-soft: #FDEFB8;
    --yellow-bg: #FCEBA0;
    --lilac: #EAD9FB;
    --blue: #D7E8FF;
    --ink: #2B2733;
    --body: #6E6A78;
    --faint: #A6A2B0;
    --white: #fff;
    --line: #F0ECF2;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--pink);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 26px
}

h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -.01em;
    line-height: 1.18;
    color: var(--ink)
}

.two {
    color: var(--pink)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    background: var(--pink);
    color: #fff;
    cursor: pointer;
    transition: .3s var(--ease);
    box-shadow: 0 12px 26px -12px rgba(255, 107, 138, .7)
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--pink-d);
    box-shadow: 0 18px 32px -12px rgba(255, 107, 138, .7)
}

.btn.ghost {
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--line);
    box-shadow: none
}

.btn.ghost:hover {
    border-color: var(--pink);
    color: var(--pink);
    background: #fff
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

[data-d="1"] {
    transition-delay: .08s
}

[data-d="2"] {
    transition-delay: .16s
}

[data-d="3"] {
    transition-delay: .24s
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 18px
}

.logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: 48px;
    height: auto;
}
.logo b2 {
    font-weight: 800;
    color: var(--pink)
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--body)
}

.nav-links a:hover {
    color: var(--pink)
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 100px;
    background: var(--pink);
    color: #fff;
    transition: .3s
}

.nav-call:hover {
    background: var(--pink-d)
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(180deg, var(--pink-bg), #fff);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center
}

.cloud {
    position: absolute;
    background: var(--pink-soft);
    border-radius: 50%;
    opacity: .7
}

.hero h1 {
    font-size: clamp(34px, 5.6vw, 60px)
}

.hero .sub {
    color: var(--body);
    max-width: 560px;
    margin: 18px auto 0;
    font-size: 17px
}

.hero .btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px
}

.hero .numline {
    margin-top: 16px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--body)
}

.hero .numline a {
    color: var(--pink);
    font-weight: 800
}

.hero .numline a:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

/* hero illustration */
.hero-art {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.hero-art .heart-mid {
    position: relative
}

.floatcard {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 16px 36px -18px rgba(40, 30, 50, .3);
    animation: floaty 5s ease-in-out infinite
}

.floatcard svg {
    width: 34px;
    height: 34px
}

.floatcard.f1 {
    top: 6%;
    left: -2%
}

.floatcard.f2 {
    bottom: 10%;
    right: -2%;
    animation-delay: -2.4s
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

@media(max-width:780px) {
    .hero-art {
        grid-template-columns: 1fr;
        gap: 0
    }

    .hero-art .person {
        max-width: 230px;
        margin: 0 auto
    }

    .hero-art .heart-mid {
        order: -1;
        max-width: 260px;
        margin: 0 auto
    }
}

/* ===== FEATURE BAND ===== */
.band {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.bcard {
    padding: 60px 44px
}

.bcard:nth-child(1) {
    background: var(--mint)
}

.bcard:nth-child(2) {
    background: var(--yellow-soft)
}

.bcard:nth-child(3) {
    background: var(--pink-soft)
}

.bcard .ic {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    box-shadow: 0 12px 26px -14px rgba(40, 30, 50, .25)
}

.bcard .ic svg {
    width: 32px;
    height: 32px
}

.bcard h3 {
    font-size: 23px
}

.bcard p {
    color: var(--body);
    font-size: 14.5px;
    margin-top: 10px
}

/* ===== SECTION SCAFFOLD ===== */
.sec {
    padding: 96px 0
}

.sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 42px)
}

.sec-head p {
    color: var(--body);
    margin-top: 14px
}

/* ===== TESTIMONIAL ===== */
.testi {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 50px;
    align-items: center
}

.testi .qmark {
    font-size: 80px;
    line-height: .5;
    color: var(--pink);
    font-weight: 800;
    font-family: Georgia, serif
}

.testi blockquote {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.45;
    margin-top: 18px
}

.testi .who {
    margin-top: 22px;
    font-weight: 700;
    color: var(--pink)
}

.testi .who small {
    display: block;
    font-weight: 500;
    color: var(--faint);
    font-size: 13px
}

.testi .tnote {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--faint)
}

.thumb-art {
    display: flex;
    justify-content: center;
}

.thumb-art .icon{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #FFE3EA;
    border: 3px solid #FFD0DC;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--pink);
    padding: 3rem;
}
.thumb-art .icon svg{
    width: 100%;
    height: 100%;
}

/* ===== HOW IT WORKS ===== */
.how {
    background: var(--yellow-bg);
    padding: 90px 0
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center
}

.how h2 {
    font-size: clamp(28px, 4vw, 42px)
}

.how .sub {
    color: #7A6A2E;
    margin-top: 14px;
    max-width: 430px
}

.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px
}

.step {
    border-radius: 14px;
    padding: 22px 22px 24px;
    border: 2px solid rgba(40, 30, 50, .12)
}

.step:nth-child(1) {
    background: var(--mint)
}

.step:nth-child(2) {
    background: var(--blue)
}

.step:nth-child(3) {
    background: var(--pink-soft)
}

.step:nth-child(4) {
    background: var(--lilac)
}

.step .n {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 12px
}

.step h4 {
    font-size: 17px;
    font-weight: 700
}

.step p {
    font-size: 13px;
    color: var(--body);
    margin-top: 6px
}

.phone-art {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.phone-art svg{
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}
.phone-art-img{
    position: absolute;
    top: 11%;
    bottom: 14%;
    left: 29%;
    right: 29%;
    overflow: hidden;
    border-radius: 20%;
}
.phone-art img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ARTICLES / TIPS ===== */
.artgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.acard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: .3s var(--ease)
}

.acard:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -26px rgba(40, 30, 50, .3)
}

.acard .top {
    height: 170px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.acard:nth-child(1) .top {
    background: var(--blue)
}

.acard:nth-child(2) .top {
    background: var(--pink-soft)
}

.acard:nth-child(3) .top {
    background: var(--mint)
}

.acard .in {
    padding: 24px 24px 26px
}

.acard .cat {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink)
}

.acard h3 {
    font-size: 18px;
    margin: 8px 0 8px;
    line-height: 1.3
}

.acard p {
    font-size: 13.5px;
    color: var(--body)
}

.acard .more {
    margin-top: 14px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.acard .more:hover {
    color: var(--pink);
    gap: 11px
}

.artmore {
    text-align: center;
    margin-top: 40px
}

/* ===== HER / HIM ===== */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.dcard {
    border-radius: 20px;
    padding: 40px 38px;
    border: 2px solid var(--line)
}

.dcard.her {
    background: var(--pink-bg)
}

.dcard.him {
    background: var(--blue)
}

.dcard .dk {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pink)
}

.dcard.him .dk {
    color: #3F73C4
}

.dcard h3 {
    font-size: 24px;
    margin: 10px 0 18px
}

.dcard ul {
    list-style: none
}

.dcard li {
    padding: 9px 0;
    font-size: 15px;
    color: var(--body);
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.dcard li b {
    color: var(--ink)
}

.dcard li .ck {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--pink);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 3px
}

.dcard.him li .ck {
    background: #3F73C4
}

.dcard li .ck svg {
    width: 11px;
    height: 11px
}

.dcard .btn {
    margin-top: 22px
}

.dcard.him .btn {
    background: #3F73C4;
    box-shadow: 0 12px 26px -12px rgba(63, 115, 196, .6)
}

.dcard.him .btn:hover {
    background: #356099
}

/* hood chips */
.hoods {
    text-align: center;
    margin-top: 54px
}

.hoods .hlbl {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--body)
}

.hchips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px
}

.hchip {
    background: var(--pink-bg);
    border: 2px solid var(--pink-soft);
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 16px;
    transition: .25s
}

.hchip:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink)
}

/* ===== SAFETY ===== */
.safe-in {
    background: var(--mint);
    border-radius: 22px;
    padding: 36px 42px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto
}

.s18 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 12px 26px -14px rgba(40, 30, 50, .25)
}

.s18 b {
    font-weight: 800;
    font-size: 23px;
    display: block;
    line-height: 1;
    color: var(--pink)
}

.s18 small {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--body)
}

.safe-in .scols {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-width: 280px
}

.safe-in h4 {
    font-size: 15px;
    font-weight: 700
}

.safe-in p {
    font-size: 13px;
    color: #3C7A6C;
    margin-top: 3px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 760px;
    margin: 0 auto
}

.fi {
    border: 2px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: .3s
}

.fi.open {
    border-color: var(--pink-soft)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 21px 26px;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--ink)
}

.fq .pm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pink-bg);
    color: var(--pink);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .3s var(--ease)
}

.fi.open .pm {
    transform: rotate(45deg);
    background: var(--pink);
    color: #fff
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 26px 24px;
    font-size: 14.5px;
    color: var(--body)
}

/* ===== FIND LOVE CTA ===== */
.findlove {
    padding: 0 0 96px
}

.fl-in {
    background: var(--pink-bg);
    border-radius: 26px;
    padding: 54px 56px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.fl-in h2 {
    font-size: clamp(28px, 4vw, 42px)
}

.fl-in h2 .two {
    color: var(--pink)
}

.fl-in p {
    color: var(--body);
    margin-top: 14px;
    max-width: 420px
}

.fl-in .num {
    display: inline-block;
    font-weight: 800;
    font-size: clamp(22px, 3vw, 32px);
    margin: 20px 0 16px
}

.fl-in .num:hover {
    color: var(--pink)
}

.fl-in .ops {
   margin-top: 1.5rem;
}

.fl-art {
    display: flex;
    justify-content: center;
}

.fl-art img{
    max-width: 400px;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FFD9E2;
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: #fff;
    padding: 2rem 0
}

.f-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.f-logo {
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.f-logo .ci {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid var(--pink);
    position: relative
}

.f-logo .ci::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--pink)
}

.f-logo b2 {
    color: var(--pink)
}

.f-links {
    display: flex;
    gap: 30px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8)
}

.f-links a:hover {
    color: var(--pink)
}

.f-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6)
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    color: #fff
}

.f-bot .age span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 800
}

.f-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 14px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .8)
}

.f-contact a {
    font-weight: 700;
    color: #fff
}

.f-contact a:hover {
    color: var(--pink)
}

/* sticky mobile call bar */
.callbar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 100px;
    padding: 9px 9px 9px 20px;
    box-shadow: 0 18px 40px -16px rgba(40, 30, 50, .4);
    transform: translateY(150%);
    transition: transform .45s var(--ease)
}

.callbar.show {
    transform: none
}

.callbar .txt {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.25
}

.callbar .txt small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--body)
}

.callbar .btn {
    padding: 11px 22px;
    font-size: 13.5px
}

@media(max-width:940px) {
    .nav-links {
        display: none
    }

    .band {
        grid-template-columns: 1fr
    }

    .testi,
    .how-grid,
    .duo,
    .fl-in {
        grid-template-columns: 1fr
    }

    .artgrid {
        grid-template-columns: 1fr 1fr
    }

    .thumb-art,
    .phone-art,
    .fl-art {
        order: -1
    }

    .safe-in .scols {
        grid-template-columns: 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:580px) {
    .wrap {
        padding: 0 20px
    }

    .sec {
        padding: 68px 0
    }

    .bcard {
        padding: 44px 30px
    }

    .artgrid,
    .steps {
        grid-template-columns: 1fr
    }

    .fl-in {
        padding: 40px 28px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}