/* Find Girlfriend — marketing site. Single shared stylesheet. */
:root {
    --pink: #EB2E61;
    --rose: #FF5C8A;
    --violet: #7C3AED;
    --bg: #0B0A10;
    --bg2: #12101a;
    --card: rgba(255, 255, 255, 0.045);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.68);
    --faint: rgba(255, 255, 255, 0.42);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --max: 1140px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.grad-text {
    background: linear-gradient(120deg, var(--rose) 0%, var(--pink) 55%, var(--violet) 120%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bg-fx {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 12% 8%, rgba(235, 46, 97, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 88% 82%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 75% 12%, rgba(255, 92, 138, 0.10) 0%, transparent 60%);
}

/* ---- nav ---- */
nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem clamp(1rem, 4vw, 2.4rem);
    background: rgba(11, 10, 16, 0.72);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(235, 46, 97, 0.14);
}
.logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.25rem; font-weight: 800; text-decoration: none; color: #fff; }
.logo-mark {
    width: 36px; height: 36px; border-radius: 10px; flex: none;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(235, 46, 97, 0.4);
}
.nav-right { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 1.9rem); }
.nav-links { display: flex; align-items: center; gap: clamp(0.9rem, 2.5vw, 1.7rem); }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color .2s; }
.nav-links a:hover { color: var(--rose); }
.nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--rose)); color: #fff !important;
    padding: 0.5rem 1.05rem; border-radius: 999px; font-weight: 700 !important; font-size: 0.9rem !important;
    box-shadow: 0 8px 22px rgba(235, 46, 97, 0.35);
}

/* language dropdown (CSS only) */
.lang { position: relative; }
.lang summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; gap: .35rem;
    color: var(--muted); font-size: 0.9rem; font-weight: 600; padding: .35rem .6rem;
    border: 1px solid var(--card-border); border-radius: 999px; white-space: nowrap;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { color: #fff; border-color: rgba(235,46,97,.4); }
.lang[open] > summary { color: #fff; }
.lang-menu {
    position: absolute; right: 0; top: calc(100% + .5rem); z-index: 200;
    background: #17141f; border: 1px solid var(--card-border); border-radius: 14px;
    padding: .4rem; min-width: 168px; max-height: 60vh; overflow: auto;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.lang-menu a { display: block; padding: .5rem .6rem; border-radius: 9px; font-size: .88rem; color: var(--muted); text-decoration: none; }
.lang-menu a:hover { background: rgba(235,46,97,.16); color: #fff; }
.lang-menu a[aria-current="true"] { color: var(--rose); font-weight: 700; }

/* ---- buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    color: #fff; text-decoration: none; font-weight: 800; font-size: 1.03rem;
    padding: 1rem 2.1rem; border-radius: 999px; border: none; cursor: pointer;
    box-shadow: 0 14px 40px rgba(235, 46, 97, 0.42);
    transition: transform .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 52px rgba(235, 46, 97, 0.58); }
.btn-ghost {
    background: rgba(255,255,255,.06); box-shadow: none; border: 1px solid var(--card-border); font-weight: 700;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }

/* ---- hero ---- */
.hero {
    max-width: var(--max); margin: 0 auto;
    padding: clamp(7rem, 12vh, 9rem) clamp(1.1rem, 4vw, 2rem) 3rem;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.hero-copy { max-width: 560px; }
.badge {
    display: inline-flex; align-items: center; gap: .45rem;
    border: 1px solid rgba(235, 46, 97, 0.5); color: var(--rose);
    padding: .32rem .9rem; border-radius: 999px; font-weight: 700; font-size: .78rem; letter-spacing: .06em;
    margin-bottom: 1.3rem;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.1rem; }
.hero-copy .sub { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted); margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.cta-note { color: var(--faint); font-size: .86rem; margin-top: .9rem; }
.flags { margin-top: 2rem; font-size: 1.35rem; letter-spacing: .28rem; line-height: 1.9; }
.flags-cap { color: var(--muted); font-size: .88rem; margin-top: .35rem; }

/* phone mockup */
.hero-visual { display: flex; justify-content: center; position: relative; }
.phone {
    position: relative; width: min(300px, 78vw); aspect-ratio: 9 / 19.3;
    border-radius: 42px; padding: 11px;
    background: linear-gradient(160deg, #26222f, #0e0c14);
    box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06), inset 0 0 0 2px rgba(255,255,255,.04);
}
.phone::before {
    content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
    width: 92px; height: 22px; background: #050409; border-radius: 0 0 14px 14px; z-index: 5;
}
.screen {
    position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
    background: #000 center/cover no-repeat;
}
.screen .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,.4) 100%); }
.screen .tag {
    position: absolute; top: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 1.3rem;
    font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.6); z-index: 3;
}
.screen .tag b { color: #fff; border-bottom: 2px solid var(--rose); padding-bottom: 3px; }
.screen .caption { position: absolute; left: 16px; bottom: 22px; right: 70px; z-index: 3; }
.screen .caption .nm { font-size: 1.12rem; font-weight: 800; display: flex; align-items: center; gap: .4rem; }
.screen .caption .hd { font-size: .82rem; color: rgba(255,255,255,.75); }
.screen .caption .bio { font-size: .8rem; color: rgba(255,255,255,.82); margin-top: .35rem; }
.screen .rail { position: absolute; right: 12px; bottom: 26px; z-index: 3; display: flex; flex-direction: column; gap: 1.05rem; align-items: center; }
.screen .rail .ic { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .68rem; color: #fff; font-weight: 600; }
.screen .rail .bub { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.screen .rail .bub.heart { background: linear-gradient(135deg, var(--pink), var(--rose)); box-shadow: 0 8px 20px rgba(235,46,97,.5); }
.float-badge {
    position: absolute; background: #17141f; border: 1px solid var(--card-border); border-radius: 14px;
    padding: .6rem .85rem; font-size: .8rem; font-weight: 700; box-shadow: 0 18px 40px rgba(0,0,0,.5);
    display: flex; align-items: center; gap: .5rem; animation: floaty 4.5s ease-in-out infinite;
}
.float-badge small { display: block; color: var(--faint); font-weight: 500; font-size: .72rem; }
.fb-1 { top: 12%; left: -6%; }
.fb-2 { bottom: 14%; right: -8%; animation-delay: 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---- generic sections ---- */
section { max-width: var(--max); margin: 0 auto; padding: clamp(3.5rem, 8vh, 5.5rem) clamp(1.1rem, 4vw, 2rem); }
.eyebrow { text-align: center; color: var(--rose); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; margin-bottom: .7rem; }
.sec-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 850; text-align: center; letter-spacing: -0.02em; line-height: 1.15; }
h2.sec-title { font-weight: 800; }
.sec-sub { text-align: center; color: var(--muted); max-width: 640px; margin: .8rem auto 0; font-size: 1.02rem; }
.mt { margin-top: 2.6rem; }

/* stat band */
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 6vw, 4.5rem); padding: 2.2rem clamp(1.1rem, 4vw, 2rem); max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.stat { text-align: center; }
.stat .n { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900; }
.stat .l { color: var(--muted); font-size: .92rem; }

/* feature grid */
.grid { display: grid; gap: 1.1rem; }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
    background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 1.7rem;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(235,46,97,.35); background: rgba(255,255,255,.06); }
.card .emoji { font-size: 1.9rem; display: block; margin-bottom: .7rem; }
.card h3 { font-size: 1.12rem; margin-bottom: .4rem; font-weight: 750; }
.card p { color: var(--muted); font-size: .96rem; }

/* steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.step { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 1.7rem; }
.step::before {
    counter-increment: step; content: counter(step);
    display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--rose)); font-weight: 800; margin-bottom: .9rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: .35rem; font-weight: 750; }
.step p { color: var(--muted); font-size: .96rem; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: .9rem; }
.girl {
    position: relative; aspect-ratio: 3 / 4; border-radius: 18px; overflow: hidden;
    text-decoration: none; color: #fff; background: #17141f; border: 1px solid var(--card-border);
    display: block;
}
.girl img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.girl:hover img { transform: scale(1.06); }
.girl .g-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 4%, rgba(0,0,0,0) 48%); }
.girl .g-meta { position: absolute; left: 12px; right: 12px; bottom: 11px; }
.girl .g-name { font-weight: 800; font-size: 1rem; display: flex; align-items: center; gap: .35rem; line-height: 1.2; }
.girl .g-role { font-size: .8rem; color: rgba(255,255,255,.78); }
.girl .g-flag { position: absolute; top: 10px; left: 10px; font-size: 1.15rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.6)); }
.girl .g-rating { position: absolute; top: 10px; right: 10px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; padding: .18rem .45rem; border-radius: 999px; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); color: #fff; }
.girl .g-rating.spicy { background: rgba(235,46,97,.85); }
.center { text-align: center; }
.mt-btn { margin-top: 2.4rem; }

/* country chips */
.countries { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .7rem; }
.ctry {
    display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text);
    background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: .75rem .95rem;
    font-weight: 600; font-size: .95rem; transition: border-color .2s, background .2s, transform .2s;
}
.ctry:hover { border-color: rgba(235,46,97,.4); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.ctry .cf { font-size: 1.25rem; }
.ctry .cc { color: var(--faint); font-size: .8rem; margin-left: auto; }

/* reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.review { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; padding: 1.6rem; }
.review .stars { color: #FFC53D; letter-spacing: .1em; margin-bottom: .6rem; }
.review h4 { font-size: 1.03rem; margin-bottom: .4rem; }
.review p { color: var(--muted); font-size: .95rem; }

/* prose (long-form SEO copy) */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.04rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.4rem 0 .9rem; font-weight: 800; }
.prose h3 { font-size: 1.2rem; margin: 1.6rem 0 .5rem; }
.prose a { color: var(--rose); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose ul { color: var(--muted); margin: 0 0 1.1rem 1.2rem; }
.prose li { margin-bottom: .5rem; }

/* faq */
.faq { max-width: 780px; margin: 2.4rem auto 0; }
.faq details { border: 1px solid var(--card-border); border-radius: 14px; padding: 0 1.2rem; margin-bottom: .7rem; background: var(--card); }
.faq summary { list-style: none; cursor: pointer; font-weight: 650; padding: 1.05rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--rose); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 1.15rem; margin-top: -.3rem; }

/* breadcrumb */
.crumb { max-width: var(--max); margin: 0 auto; padding: 5.5rem clamp(1.1rem, 4vw, 2rem) 0; font-size: .85rem; color: var(--faint); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--rose); }

/* final cta */
.final { text-align: center; }
.final-box {
    max-width: 820px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem);
    border-radius: 28px; border: 1px solid rgba(235,46,97,.3);
    background: radial-gradient(ellipse at 50% -20%, rgba(235,46,97,.24), rgba(124,58,237,.1) 60%, transparent);
}
.final-box h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 850; letter-spacing: -0.02em; }
.final-box p { color: var(--muted); max-width: 520px; margin: .9rem auto 1.8rem; }

/* ad slot */
.ad-slot { max-width: 1000px; margin: 1rem auto; text-align: center; padding: 0 1rem; }

/* footer */
footer { border-top: 1px solid rgba(235,46,97,.12); margin-top: 2rem; }
.foot-grid { max-width: var(--max); margin: 0 auto; padding: 3.2rem clamp(1.1rem, 4vw, 2rem) 1.5rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.foot-brand .logo { margin-bottom: .8rem; }
.foot-brand p { color: var(--faint); font-size: .9rem; max-width: 300px; }
.foot-col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: .9rem; }
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: .93rem; margin-bottom: .55rem; }
.foot-col a:hover { color: var(--rose); }
.foot-bottom { max-width: var(--max); margin: 0 auto; padding: 1.4rem clamp(1.1rem, 4vw, 2rem) 3rem; border-top: 1px solid var(--card-border); }
.foot-bottom .cp { color: var(--faint); font-size: .85rem; text-align: center; }
.foot-bottom .disc { color: rgba(255,255,255,.34); font-size: .78rem; max-width: 760px; margin: .9rem auto 0; text-align: center; }

/* sticky mobile download bar */
.dockbar { display: none; }

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 6.5rem; }
    .hero-copy { max-width: 620px; margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .flags { text-align: center; }
    .hero-visual { order: -1; margin-bottom: 1rem; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .float-badge { display: none; }
}
@media (max-width: 680px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-brand { grid-column: 1 / -1; }
    .dockbar {
        display: flex; align-items: center; justify-content: space-between; gap: .8rem;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
        padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
        background: rgba(11,10,16,.92); backdrop-filter: blur(20px); border-top: 1px solid rgba(235,46,97,.2);
    }
    .dockbar .d-txt { font-size: .82rem; font-weight: 700; line-height: 1.2; }
    .dockbar .d-txt small { display: block; color: var(--faint); font-weight: 500; font-size: .72rem; }
    .dockbar .btn { padding: .7rem 1.2rem; font-size: .9rem; }
    body { padding-bottom: 4.5rem; }
    section { padding-top: 3rem; padding-bottom: 3rem; }
}
@media (min-width: 681px) { .lang-menu { grid-template-columns: 1fr 1fr; } }
