*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f6fb;
color:#333;
}

.page-bg{
min-height:100vh;
padding:20px 20px;
background:linear-gradient(135deg, #ffdce5, #eef3ff);
transition: padding 0.3s ease;
}

.main-card{
max-width:1400px;
margin:auto;
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 30px 80px rgba(0,0,0,.08);
position:relative;
}

/* HEADER */

.header{
min-height:75px;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 50px;
gap:20px;
position:relative;
z-index:10;
}

.logo{
font-size:26px;
font-weight:800;
color:#222;
display:flex;
align-items:center;
gap:6px;
}

.brand-logo-img{
height:62px;
max-height:68px;
width:auto;
object-fit:contain;
display:block;
transition: transform 0.2s ease;
}

.brand-logo-img:hover{
transform:scale(1.03);
}

.footer-logo-img{
height:54px;
max-height:60px;
filter: brightness(1.1);
}

.heart{
color:#ff3157;
}

nav{
display:flex;
gap:35px;
align-items:center;
}

nav a{
text-decoration:none;
color:#666;
font-size:15px;
font-weight:500;
position:relative;
transition: color 0.2s ease;
}

nav a:hover, nav a.active{
color:#ff3157;
font-weight:600;
}

nav a.active::after{
content:"";
position:absolute;
bottom:-6px;
left:50%;
transform:translateX(-50%);
width:6px;
height:6px;
background:#ff3157;
border-radius:50%;
}

.header-actions{
display:flex;
gap:20px;
align-items:center;
z-index:5;
}

.login-btn{
background:transparent;
border:none;
padding:10px 20px;
font-size:15px;
font-weight:600;
color:#222;
cursor:pointer;
transition: color 0.2s ease;
}

.login-btn:hover{
color:#ff3157;
}

.contact-btn{
background:#ff3157;
border:none;
padding:14px 28px;
border-radius:12px;
color:white;
font-weight:700;
font-size:13px;
letter-spacing:0.5px;
cursor:pointer;
box-shadow:0 8px 20px rgba(255,49,87,.3);
transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover{
background:#e0264a;
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(255,49,87,.4);
}

.yellow-header-bar{
position:absolute;
right:0;
top:0;
width:220px;
height:100%;
background:#ffcb27;
z-index:1;
border-radius:0 0 0 25px;
pointer-events:none;
}

/* HERO */

.hero{
display:flex;
padding:15px 50px 35px;
position:relative;
gap:30px;
align-items:center;
}

.hero-content{
width:42%;
padding-top:10px;
z-index:5;
}

/* HERO MIDDLE FEATURE IMAGE (aaaa.png) */

.hero-middle-box{
position:relative;
z-index:6;
display:flex;
align-items:center;
justify-content:center;
width:22%;
flex-shrink:0;
}

.hero-middle-img{
width:100%;
max-width:250px;
height:auto;
max-height:420px;
object-fit:contain;
filter: drop-shadow(0 15px 30px rgba(0,0,0,.12));
transition: transform 0.3s ease;
animation: floatHeroMiddle 4s ease-in-out infinite alternate;
}

@keyframes floatHeroMiddle {
0% { transform: translateY(0); }
100% { transform: translateY(-10px); }
}

.hero-middle-img:hover{
transform: translateY(-5px) scale(1.04);
}

/* HERO CENTER IMAGE */

.hero-image{
width:36%;
position:relative;
display:flex;
justify-content:center;
align-items:center;
min-height:460px;
}

.top-label-container{
display:inline-flex;
flex-direction:column;
position:relative;
margin-bottom:15px;
}

.top-label{
color:#ff3157;
font-size:14px;
font-weight:700;
letter-spacing:0.3px;
}

.top-label-underline{
width:150px;
height:10px;
margin-top:-2px;
}

.hero-content h1{
font-size:clamp(38px, 4.2vw, 64px);
line-height:1.1;
font-weight:800;
color:#222;
}

.hero-content h1 span.highlight{
color:#ff3157;
display:inline-block;
}

.hero-content p{
margin-top:20px;
font-size:16px;
line-height:1.8;
color:#666;
max-width:440px;
}

.hero-actions{
margin-top:35px;
display:flex;
align-items:center;
gap:25px;
flex-wrap:wrap;
}

.join-btn{
background:linear-gradient(135deg, #ff3157, #ff5374);
border:none;
color:white;
padding:18px 40px;
border-radius:50px;
font-weight:700;
font-size:14px;
letter-spacing:0.5px;
cursor:pointer;
box-shadow:0 12px 30px rgba(255,49,87,.35);
transition: transform 0.2s ease, box-shadow 0.2s ease;
display:inline-flex;
align-items:center;
justify-content:center;
text-decoration:none;
}

.join-btn:hover{
transform:translateY(-3px);
box-shadow:0 16px 35px rgba(255,49,87,.45);
}

.success-badge{
display:flex;
align-items:center;
gap:8px;
background:#fff;
padding:8px 16px;
border-radius:30px;
box-shadow:0 8px 25px rgba(0,0,0,.06);
border:1px solid #f1f5f9;
}

.success-badge .percent{
font-size:22px;
font-weight:800;
color:#222;
}

.heartbeat-line{
width:60px;
height:20px;
}

.bulb-icon{
font-size:18px;
}

/* HERO CENTER IMAGE */

.hero-image{
width:50%;
position:relative;
display:flex;
justify-content:center;
align-items:center;
min-height:460px;
}

.yellow-panel{
position:absolute;
right:0;
top:-90px;
width:220px;
height:calc(100% + 90px);
background:#ffcb27;
z-index:2;
border-radius:0 0 0 35px;
}

.hero-image img{
width:100%;
max-width:500px;
height:auto;
position:relative;
z-index:5;
object-fit:contain;
}

.circle{
position:absolute;
border:2px stroke rgba(255,49,87,.2);
border-radius:50%;
pointer-events:none;
z-index:3;
}

.c1{
width:360px;
height:360px;
border:2px solid rgba(255,49,87,.2);
}

.c2{
width:450px;
height:450px;
border:2px dashed rgba(255,49,87,.15);
}

.floating-card{
position:absolute;
bottom:30px;
left:10px;
background:#222;
color:white;
padding:12px 20px;
border-radius:14px;
font-size:13px;
z-index:10;
box-shadow:0 12px 30px rgba(0,0,0,.25);
white-space:nowrap;
display:flex;
flex-direction:column;
align-items:flex-start;
gap:2px;
}

.floating-card .stars{
color:#ffcb27;
font-size:12px;
}

.heart-icon{
position:absolute;
width:46px;
height:46px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
box-shadow:0 10px 25px rgba(0,0,0,.12);
z-index:11;
animation: floatHeart 3s ease-in-out infinite alternate;
}

@keyframes floatHeart {
0% { transform: translateY(0); }
100% { transform: translateY(-8px); }
}

.h1{ top:30px; left:10px; animation-delay:0s; }
.h2{ top:120px; right:30px; animation-delay:1s; }
.h3{ bottom:60px; right:10px; animation-delay:2s; }

/* CONNECTING FLOATING BUTTONS */

.connecting-actions{
display:flex;
justify-content:flex-end;
padding:0 60px;
margin-top:-20px;
position:relative;
z-index:15;
gap:12px;
}

.floating-btn{
width:45px;
height:45px;
border-radius:50%;
border:none;
color:white;
font-size:20px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 20px rgba(0,0,0,.15);
transition: transform 0.2s ease;
}

.floating-btn:hover{
transform:scale(1.1);
}

.video-btn{ background:#3b82f6; }
.mic-btn{ background:#f97316; }

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(3,1fr);
padding:40px 50px;
gap:25px;
background:#fafafa;
}

.feature-card{
text-align:center;
padding:40px 25px;
background:white;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.03);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.feature-card-img{
height:85px;
width:auto;
max-width:140px;
object-fit:contain;
margin:0 auto 20px;
display:block;
filter: drop-shadow(0 8px 20px rgba(0,0,0,.08));
transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .feature-card-img{
transform: translateY(-5px) scale(1.08);
filter: drop-shadow(0 12px 25px rgba(255,49,87,.2));
}

.feature-icon{
width:80px;
height:80px;
margin:0 auto 20px;
border-radius:22px;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
color:white;
}

.orange{ background:linear-gradient(135deg, #ff9800, #ffb74d); }
.pink{ background:linear-gradient(135deg, #ff3157, #ff6584); }
.yellow{ background:linear-gradient(135deg, #ffcb27, #ffda66); }

.feature-card h3{
margin-bottom:10px;
font-size:22px;
font-weight:700;
color:#222;
}

.feature-card p{
font-size:14px;
color:#777;
line-height:1.7;
}

/* SECTION COMMON STYLES */

.section-block{
display:flex;
align-items:center;
padding:45px 50px;
gap:40px;
}

.section-block h2{
font-size:clamp(32px, 3.5vw, 48px);
font-weight:800;
color:#222;
margin-top:10px;
line-height:1.2;
}

.section-block h2 span{
color:#ff3157;
}

.section-block p{
margin-top:20px;
font-size:15px;
line-height:1.8;
color:#666;
}

/* MEET THE CHOOSEN ONE */

.meet-section{
background:#ffffff;
}

.meet-image-col{
width:45%;
display:flex;
justify-content:center;
}

.meet-circle-wrapper{
position:relative;
width:100%;
max-width:400px;
}

.meet-img{
width:100%;
height:auto;
border-radius:24px;
-webkit-mask-image: radial-gradient(ellipse at center, #000 70%, transparent 98%);
mask-image: radial-gradient(ellipse at center, #000 70%, transparent 98%);
transition: transform 0.3s ease;
}

.meet-img:hover{
transform: scale(1.02);
}

.m-h1{ top:20px; left:-10px; }
.m-h2{ bottom:30px; right:-10px; }

.meet-content-col{
width:55%;
}

.user-pill-card{
margin-top:30px;
display:inline-flex;
align-items:center;
gap:15px;
background:#ff3157;
color:white;
padding:12px 24px;
border-radius:50px;
box-shadow:0 12px 25px rgba(255,49,87,.3);
}

.user-avatar{
font-size:24px;
background:rgba(255,255,255,0.2);
width:42px;
height:42px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.user-info{
display:flex;
flex-direction:column;
}

.user-info strong{
font-size:15px;
font-weight:700;
}

.user-info span{
font-size:12px;
opacity:0.9;
}

.user-actions{
display:flex;
gap:8px;
margin-left:10px;
}

.pill-btn{
background:white;
border:none;
width:34px;
height:34px;
border-radius:50%;
cursor:pointer;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
transition: transform 0.2s ease;
text-decoration:none;
color:inherit;
}

.pill-btn:hover{ transform:scale(1.1); }

/* DYNAMIC LOVER COMMUNICATION */

.dynamic-section{
background:#fcfcfc;
}

.dynamic-content-col{ width:50%; }
.dynamic-image-col{ width:50%; text-align:center; }

.dynamic-img{
width:100%;
max-width:480px;
height:auto;
border-radius:24px;
-webkit-mask-image: radial-gradient(ellipse at center, #000 70%, transparent 98%);
mask-image: radial-gradient(ellipse at center, #000 70%, transparent 98%);
transition: transform 0.3s ease;
}

.dynamic-img:hover{
transform: scale(1.02);
}

.stats-row{
display:flex;
gap:40px;
margin:30px 0;
}

.stat-item{
display:flex;
flex-direction:column;
}

.stat-number{
font-size:42px;
font-weight:800;
color:#222;
line-height:1;
}

.stat-label{
font-size:13px;
color:#777;
margin-top:5px;
line-height:1.4;
font-weight:500;
}

/* FRIENDS COME TO YOUR PHONE */

.phone-section{
background:#ffffff;
}

.phone-image-col{ width:50%; text-align:center; }
.phone-content-col{ width:50%; }

.phone-img{
width:100%;
max-width:480px;
height:auto;
object-fit:contain;
display:block;
margin:0 auto;
border-radius:24px;
-webkit-mask-image: radial-gradient(ellipse at center, #000 70%, transparent 98%);
mask-image: radial-gradient(ellipse at center, #000 70%, transparent 98%);
transition: transform 0.3s ease;
}

.phone-img:hover{
transform: scale(1.02);
}

.friends-avatars{
display:flex;
flex-direction:column;
gap:20px;
max-width:380px;
margin:auto;
}

.friend-card{
display:flex;
align-items:center;
gap:15px;
background:#f8fafc;
padding:15px 20px;
border-radius:20px;
box-shadow:0 8px 20px rgba(0,0,0,.04);
border:1px solid #edf2f7;
}

.avatar-emoji{
font-size:32px;
background:#fff;
padding:8px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,.06);
}

.chat-bubble{
background:#222;
color:white;
padding:10px 16px;
border-radius:14px;
font-size:13px;
font-weight:500;
}

.chat-bubble.pink{
background:#ff3157;
}

/* TESTIMONIALS */

.testimonials-faq-combined{
padding:45px 50px;
background:#fff9fa;
position:relative;
}

.combined-grid{
display:grid;
grid-template-columns:1.2fr 0.8fr;
gap:60px;
align-items:center;
}

.combined-left-col{
display:flex;
flex-direction:column;
gap:40px;
width:100%;
}

.testimonials-block, .faq-block{
width:100%;
}

.combined-right-col{
display:flex;
justify-content:center;
align-items:center;
height:100%;
position:sticky;
top:40px;
}

.full-cover-img{
width:100%;
max-width:580px;
max-height:850px;
height:auto;
object-fit:contain;
display:block;
margin:0 auto;
filter: drop-shadow(0 20px 40px rgba(0,0,0,.08));
image-rendering: -webkit-optimize-contrast;
transition: transform 0.3s ease;
}

.full-cover-img:hover{
transform:scale(1.02);
}

.section-title h2{
font-size:clamp(30px, 3.5vw, 44px);
font-weight:800;
color:#222;
margin-bottom:15px;
}

.section-title h2 span{
color:#ff3157;
}

.illustrative-note{
font-size:12px;
color:#94a3b8;
font-weight:500;
margin-bottom:20px;
font-style:italic;
}

.illustrative-tag{
font-size:11px;
color:#94a3b8;
font-weight:500;
font-style:italic;
margin-left:8px;
}

.testimonial-container{
max-width:800px;
margin:0 auto;
position:relative;
}

.map-bg-pattern{
position:absolute;
inset:0;
background-image: radial-gradient(#ff3157 1px, transparent 1px);
background-size: 24px 24px;
opacity: 0.15;
border-radius:30px;
pointer-events:none;
}

.testimonial-card{
background:white;
padding:45px;
border-radius:28px;
box-shadow:0 15px 40px rgba(255,49,87,.08);
position:relative;
z-index:2;
border:1px solid #ffeef1;
}

.quote-mark{
font-size:60px;
color:#ff3157;
line-height:1;
margin-bottom:-10px;
font-family:Georgia, serif;
}

.quote-text{
font-size:16px;
line-height:1.9;
color:#555;
margin-bottom:30px;
font-style:italic;
}

.reviewer-info{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
}

.reviewer-avatar{
width:56px;
height:56px;
border-radius:50%;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
border:2.5px solid #ff3157;
box-shadow:0 6px 16px rgba(255,49,87,.25);
flex-shrink:0;
background:#ffeef2;
}

.reviewer-img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
}

.reviewer-details h4{
font-size:16px;
font-weight:700;
color:#222;
text-align:left;
}

/* TESTIMONIAL SLIDER STYLES */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.testimonial-nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    position: relative;
    z-index: 5;
}

.t-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.t-dot.active {
    background: #ff3157;
    width: 24px;
    border-radius: 12px;
}

.t-nav-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #334155;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.t-nav-btn:hover {
    background: #ff3157;
    color: white;
    border-color: #ff3157;
    transform: scale(1.05);
}

.reviewer-details .stars{
color:#ffcb27;
font-size:13px;
text-align:left;
}

/* FAQ SECTION */

.faq-section{
padding:80px 60px;
background:#ffffff;
}

.faq-accordion{
max-width:850px;
margin:40px auto 0;
display:flex;
flex-direction:column;
gap:15px;
}

.faq-item{
background:#f8fafc;
border-radius:16px;
border:1px solid #e2e8f0;
overflow:hidden;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active{
border-color:#ff3157;
box-shadow:0 8px 25px rgba(255,49,87,.08);
background:#ffffff;
}

.faq-question{
width:100%;
padding:20px 25px;
background:none;
border:none;
text-align:left;
font-size:16px;
font-weight:600;
color:#222;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
}

.faq-icon{
font-size:22px;
font-weight:700;
color:#ff3157;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
padding:0 25px;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:0 25px 20px;
}

.faq-answer p{
font-size:14px;
line-height:1.8;
color:#666;
}

/* FOOTER */

.footer{
background:#0f172a;
color:#94a3b8;
padding:60px 50px 30px;
border-top:1px solid rgba(255,255,255,.05);
}

.footer-top{
display:grid;
grid-template-columns:1.8fr 1fr 1fr;
gap:40px;
padding-bottom:45px;
border-bottom:1px solid #1e293b;
}

.footer-brand-col{
display:flex;
flex-direction:column;
gap:18px;
}

.footer-logo-box{
display:inline-block;
}

.footer-logo-link{
display:inline-flex;
align-items:center;
background:#ffffff;
padding:8px 18px;
border-radius:14px;
box-shadow:0 4px 20px rgba(0,0,0,.25);
transition:transform 0.2s ease, box-shadow 0.2s ease;
text-decoration:none;
width:fit-content;
}

.footer-logo-link:hover{
transform:translateY(-2px);
box-shadow:0 8px 25px rgba(255,49,87,.3);
}

.footer-logo-img{
height:48px;
max-height:52px;
width:auto;
object-fit:contain;
display:block;
filter:none !important;
}

.footer-about-text{
font-size:14px;
line-height:1.7;
color:#94a3b8;
max-width:320px;
}

.age-badge{
background:rgba(255,49,87,.12);
color:#ff5374;
font-size:12px;
font-weight:700;
padding:8px 16px;
border-radius:20px;
display:inline-flex;
align-items:center;
gap:8px;
border:1px solid rgba(255,49,87,.3);
width:fit-content;
}

.eighteen-icon{
font-size:14px;
}

.footer-col h4{
color:#f8fafc;
font-size:16px;
font-weight:700;
margin-bottom:20px;
position:relative;
}

.footer-col h4::after{
content:"";
display:block;
width:25px;
height:3px;
background:#ff3157;
border-radius:2px;
margin-top:6px;
}

.footer-links{
list-style:none;
padding:0;
margin:0;
display:flex;
flex-direction:column;
gap:12px;
}

.footer-links a{
color:#cbd5e1;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover{
color:#ff3157;
padding-left:4px;
}

.messenger-badges{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:20px;
}

.m-badge{
font-size:12px;
font-weight:600;
padding:5px 12px;
border-radius:20px;
background:#1e293b;
color:#e2e8f0;
border:1px solid #334155;
}

.m-badge.telegram{ border-color:rgba(56,189,248,.4); color:#38bdf8; }
.m-badge.whatsapp{ border-color:rgba(74,222,128,.4); color:#4ade80; }
.m-badge.signal{ border-color:rgba(192,132,252,.4); color:#c084fc; }

.footer-join-btn{
background:linear-gradient(135deg, #ff3157, #ff5374);
color:white;
padding:12px 24px;
border-radius:30px;
font-weight:700;
font-size:13px;
text-decoration:none;
display:inline-block;
box-shadow:0 6px 20px rgba(255,49,87,.3);
transition:transform 0.2s ease;
}

.footer-join-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(255,49,87,.4);
}

.footer-bottom{
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding-top:25px;
}

.copyright{
font-size:13px;
color:#64748b;
margin:0;
text-align:center;
}

/* SUBPAGE HERO BANNER */

.subpage-hero{
padding:40px 50px;
background:linear-gradient(135deg, #fff5f6, #f3f6ff);
text-align:center;
border-bottom:1px solid #f1f5f9;
}

.subpage-hero h1{
font-size:clamp(32px, 4vw, 54px);
font-weight:800;
color:#222;
margin-top:10px;
}

.subpage-hero h1 span{
color:#ff3157;
}

.subpage-hero p{
max-width:650px;
margin:15px auto 0;
font-size:16px;
color:#666;
line-height:1.8;
}

/* AUTHENTICATION PAGES (LOGIN / SIGNUP) */

.auth-section{
padding:60px 40px;
background:#fafafa;
display:flex;
justify-content:center;
align-items:center;
}

.auth-layout-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
width:100%;
max-width:1150px;
margin:0 auto;
}

.auth-card-col{
width:100%;
display:flex;
justify-content:center;
}

.auth-image-col{
width:100%;
display:flex;
justify-content:center;
align-items:center;
}

.auth-featured-img{
width:100%;
max-width:480px;
height:auto;
object-fit:contain;
display:block;
margin:0 auto;
filter: drop-shadow(0 20px 40px rgba(0,0,0,.08));
image-rendering: -webkit-optimize-contrast;
transition: transform 0.3s ease;
}

.auth-featured-img:hover{
transform:scale(1.02);
}

.auth-card{
background:white;
width:100%;
max-width:480px;
padding:40px;
border-radius:28px;
box-shadow:0 20px 50px rgba(0,0,0,.06);
border:1px solid #f1f5f9;
}

.auth-card.wide{
max-width:620px;
}

.auth-header{
text-align:center;
margin-bottom:30px;
}

.auth-badge{
font-size:12px;
font-weight:700;
color:#ff3157;
text-transform:uppercase;
letter-spacing:1px;
background:#ffeef2;
padding:4px 14px;
border-radius:20px;
display:inline-block;
margin-bottom:10px;
}

.auth-header h2{
font-size:28px;
font-weight:800;
color:#222;
}

.auth-header h2 span{
color:#ff3157;
}

.auth-header p{
font-size:14px;
color:#777;
margin-top:5px;
}

.auth-form{
display:flex;
flex-direction:column;
gap:20px;
}

.form-grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.form-group{
display:flex;
flex-direction:column;
gap:8px;
text-align:left;
}

.form-group label{
font-size:13px;
font-weight:600;
color:#334155;
}

.label-row{
display:flex;
justify-content:space-between;
align-items:center;
}

.forgot-link{
font-size:12px;
color:#ff3157;
text-decoration:none;
font-weight:500;
}

.forgot-link:hover{
text-decoration:underline;
}

.form-input{
width:100%;
padding:14px 18px;
border-radius:12px;
border:1.5px solid #e2e8f0;
font-size:14px;
font-family:inherit;
outline:none;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
background:#fafafa;
}

.form-input:focus{
border-color:#ff3157;
background:white;
box-shadow:0 0 0 4px rgba(255,49,87,.12);
}

.form-select{
cursor:pointer;
}

.form-textarea{
resize:vertical;
min-height:120px;
}

.form-checkbox-row{
display:flex;
align-items:center;
margin:5px 0;
}

.checkbox-container{
display:flex;
align-items:center;
gap:10px;
font-size:13px;
color:#64748b;
cursor:pointer;
}

.auth-submit-btn{
width:100%;
margin-top:10px;
text-align:center;
justify-content:center;
}

.auth-divider{
display:flex;
align-items:center;
text-align:center;
margin:25px 0;
color:#94a3b8;
font-size:12px;
font-weight:600;
letter-spacing:0.5px;
}

.auth-divider::before, .auth-divider::after{
content:"";
flex:1;
border-bottom:1px solid #e2e8f0;
}

.auth-divider span{
padding:0 15px;
}

.social-auth-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.social-auth-btn{
display:flex;
align-items:center;
justify-content:center;
gap:8px;
padding:12px;
border-radius:12px;
border:1px solid #e2e8f0;
background:white;
font-size:14px;
font-weight:600;
color:#334155;
cursor:pointer;
transition: background 0.2s ease, border-color 0.2s ease;
}

.social-auth-btn:hover{
background:#f8fafc;
border-color:#cbd5e1;
}

.social-icon{
font-weight:bold;
font-size:16px;
}

.auth-footer-text{
text-align:center;
margin-top:25px;
font-size:14px;
color:#64748b;
}

.auth-footer-text a{
color:#ff3157;
font-weight:600;
text-decoration:none;
}

.auth-footer-text a:hover{
text-decoration:underline;
}

/* CONTACT PAGE STYLES */

.contact-page-section{
padding:45px 50px;
background:#ffffff;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1.5fr;
gap:50px;
}

.contact-info-column{
display:flex;
flex-direction:column;
gap:20px;
}

.info-card{
display:flex;
align-items:flex-start;
gap:20px;
padding:25px;
background:#f8fafc;
border-radius:20px;
border:1px solid #edf2f7;
}

.info-icon{
width:50px;
height:50px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
flex-shrink:0;
}

.info-details h3{
font-size:18px;
font-weight:700;
color:#222;
margin-bottom:5px;
}

.info-details p{
font-size:14px;
color:#64748b;
line-height:1.6;
}

.contact-form-card{
background:#ffffff;
padding:40px;
border-radius:28px;
box-shadow:0 15px 40px rgba(0,0,0,.05);
border:1px solid #f1f5f9;
display:flex;
flex-direction:column;
gap:18px;
}

.contact-form-card h3{
font-size:24px;
font-weight:800;
color:#222;
}

.contact-form-card p{
font-size:14px;
color:#64748b;
margin-bottom:10px;
}

.map-section{
padding:0 50px 40px;
}

.map-container{
width:100%;
height:280px;
background:linear-gradient(135deg, #eef2ff, #f8fafc);
border-radius:24px;
overflow:hidden;
border:1px solid #e2e8f0;
display:flex;
align-items:center;
justify-content:center;
}

.map-placeholder{
text-align:center;
color:#475569;
}

.map-pin{
font-size:40px;
display:block;
margin-bottom:10px;
}

.map-placeholder h4{
font-size:20px;
font-weight:700;
color:#1e293b;
}

/* ABOUT PAGE STYLES */

.about-story-section{
padding:45px 50px;
background:#ffffff;
}

.story-content-col{ width:50%; }
.story-image-col{ width:50%; }

.story-full-img{
width:100%;
height:auto;
display:block;
object-fit:contain;
border-radius:24px;
filter: drop-shadow(0 15px 35px rgba(0,0,0,.08));
transition: transform 0.3s ease;
}

.story-full-img:hover{
transform:scale(1.02);
}

.about-values-section{
padding:40px 50px;
background:#fafafa;
}

.about-stats-banner{
padding:40px 50px;
background:linear-gradient(135deg, #1e293b, #0f172a);
color:white;
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:30px;
text-align:center;
}

.about-stats-banner .stat-number{
font-size:42px;
font-weight:800;
color:#ff3157;
line-height:1;
}

.about-stats-banner .stat-label{
font-size:14px;
color:#94a3b8;
margin-top:8px;
display:block;
}

.team-section{
padding:45px 50px;
background:#ffffff;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:30px;
margin-top:40px;
}

.team-card{
background:white;
padding:20px;
border-radius:24px;
text-align:center;
border:1px solid #e2e8f0;
box-shadow:0 10px 30px rgba(0,0,0,.04);
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
overflow:hidden;
}

.team-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(255,49,87,.12);
border-color:#ffb3c1;
}

.team-img-box{
width:100%;
height:280px;
border-radius:18px;
overflow:hidden;
margin-bottom:18px;
background:linear-gradient(135deg, #fff0f3, #ffeef2);
}

.team-img-box img{
width:100%;
height:100%;
object-fit:cover;
object-position:top center;
display:block;
transition: transform 0.4s ease;
image-rendering: -webkit-optimize-contrast;
}

.team-img-box img.img-pos-high{
object-position: 50% 0%;
transform: scale(1.08);
}

.team-card:hover .team-img-box img{
transform:scale(1.08);
}

.team-card h4{
font-size:20px;
font-weight:800;
color:#1e293b;
margin-bottom:4px;
}

.team-card span{
font-size:13px;
font-weight:600;
color:#ff3157;
}

/* MEMBERSHIP & PRICING STYLES */

.pricing-section{
padding:45px 50px;
background:#fafafa;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:30px;
align-items:stretch;
}

.pricing-card{
background:white;
padding:40px 30px;
border-radius:28px;
border:1px solid #e2e8f0;
display:flex;
flex-direction:column;
justify-content:space-between;
position:relative;
box-shadow:0 10px 30px rgba(0,0,0,.03);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.pricing-card.popular{
border:2px solid #ff3157;
box-shadow:0 15px 40px rgba(255,49,87,.15);
}

.popular-badge{
position:absolute;
top:-15px;
left:50%;
transform:translateX(-50%);
background:#ff3157;
color:white;
font-size:11px;
font-weight:800;
letter-spacing:1px;
padding:6px 18px;
border-radius:20px;
box-shadow:0 4px 12px rgba(255,49,87,.4);
}

.plan-header h3{
font-size:24px;
font-weight:800;
color:#222;
}

.plan-header p{
font-size:13px;
color:#64748b;
margin-top:5px;
line-height:1.5;
}

.plan-price{
margin:25px 0;
display:flex;
align-items:baseline;
gap:4px;
}

.plan-price .currency{
font-size:24px;
font-weight:700;
color:#222;
}

.plan-price .amount{
font-size:48px;
font-weight:800;
color:#222;
line-height:1;
}

.plan-price .period{
font-size:14px;
color:#64748b;
}

.plan-features{
list-style:none;
display:flex;
flex-direction:column;
gap:12px;
margin-bottom:30px;
}

.plan-features li{
font-size:14px;
color:#334155;
display:flex;
align-items:center;
gap:10px;
}

.plan-features li .check{
color:#10b981;
font-weight:bold;
}

.plan-features li.disabled{
color:#94a3b8;
text-decoration:line-through;
}

.pricing-btn{
display:block;
text-align:center;
padding:14px;
border-radius:50px;
font-weight:700;
font-size:13px;
letter-spacing:0.5px;
text-decoration:none;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-btn.primary{
background:linear-gradient(135deg, #ff3157, #ff5374);
color:white;
box-shadow:0 8px 20px rgba(255,49,87,.3);
}

.pricing-btn.secondary{
background:#f1f5f9;
color:#334155;
}

.pricing-btn:hover{
transform:translateY(-2px);
}

.comparison-section{
padding:45px 50px;
background:#ffffff;
}

.table-wrapper{
overflow-x:auto;
margin-top:40px;
}

.comparison-table{
width:100%;
border-collapse:collapse;
text-align:left;
}

.comparison-table th, .comparison-table td{
padding:18px 24px;
border-bottom:1px solid #e2e8f0;
font-size:14px;
}

.comparison-table th{
background:#f8fafc;
font-weight:700;
color:#1e293b;
}

.comparison-table td{
color:#475569;
}

/* LEGAL PAGES (TERMS & PRIVACY) */

.legal-section{
padding:45px 50px;
background:#ffffff;
}

.legal-container{
display:grid;
grid-template-columns:260px 1fr;
gap:50px;
}

.legal-sidebar{
background:#f8fafc;
padding:25px;
border-radius:20px;
border:1px solid #e2e8f0;
height:fit-content;
position:sticky;
top:30px;
}

.legal-sidebar h4{
font-size:16px;
font-weight:700;
color:#1e293b;
margin-bottom:15px;
}

.legal-sidebar ul{
list-style:none;
display:flex;
flex-direction:column;
gap:10px;
}

.legal-sidebar a{
font-size:13px;
color:#64748b;
text-decoration:none;
transition: color 0.2s ease;
}

.legal-sidebar a:hover{
color:#ff3157;
font-weight:600;
}

.legal-content{
display:flex;
flex-direction:column;
gap:35px;
}

.legal-block h2{
font-size:22px;
font-weight:800;
color:#1e293b;
margin-bottom:12px;
}

.legal-block p{
font-size:15px;
line-height:1.8;
color:#475569;
}

.legal-block ul{
margin-top:10px;
padding-left:20px;
color:#475569;
font-size:15px;
line-height:1.8;
}

/* EUROPEAN MEMBERS PAGE STYLES */

.members-filter-section{
padding:30px 50px 15px;
background:#fafafa;
}

.filter-bar-card{
background:white;
padding:25px 30px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.04);
border:1px solid #e2e8f0;
display:grid;
grid-template-columns:1.5fr 1fr 1fr 180px;
gap:20px;
align-items:end;
}

.filter-group{
display:flex;
flex-direction:column;
gap:8px;
}

.filter-group label{
font-size:13px;
font-weight:600;
color:#334155;
}

.secondary-btn{
background:#f1f5f9;
color:#334155;
box-shadow:none;
padding:12px;
border-radius:12px;
font-size:13px;
}

.secondary-btn:hover{
background:#e2e8f0;
transform:translateY(-2px);
box-shadow:none;
}

.members-grid-section{
padding:15px 50px 50px;
background:#fafafa;
}

.members-counter-bar{
font-size:14px;
font-weight:600;
color:#64748b;
margin-bottom:25px;
}

.members-counter-bar span{
color:#ff3157;
font-weight:800;
}

.members-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:30px;
}

.member-card{
background:white;
border-radius:24px;
padding:16px;
border:1px solid #e2e8f0;
display:flex;
flex-direction:column;
justify-content:space-between;
box-shadow:0 10px 30px rgba(0,0,0,.04);
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
position:relative;
overflow:hidden;
}

.member-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(255,49,87,.12);
border-color:#ffb3c1;
}

.member-avatar-box{
width:100%;
height:290px;
margin-bottom:15px;
background:linear-gradient(135deg, #fff0f3, #ffeef2);
border-radius:18px;
position:relative;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

.member-avatar-box img{
width:100%;
height:100%;
object-fit:cover;
object-position:top center;
display:block;
transition: transform 0.4s ease;
image-rendering: -webkit-optimize-contrast;
}

.member-card:hover .member-avatar-box img{
transform:scale(1.05);
}

.member-badge-top{
position:absolute;
top:12px;
left:12px;
right:12px;
display:flex;
justify-content:flex-end;
align-items:center;
z-index:10;
pointer-events:none;
}

.country-flag{
font-size:12px;
font-weight:700;
color:#334155;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(6px);
padding:5px 12px;
border-radius:20px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.member-info{
text-align:center;
margin-bottom:18px;
}

.member-info h3{
font-size:19px;
font-weight:800;
color:#1e293b;
margin-bottom:4px;
}

.member-info h3 .age{
color:#ff3157;
}

.location-text{
font-size:13px;
color:#64748b;
margin-bottom:12px;
}

.tags-row{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:6px;
}

.tag{
background:#f8fafc;
color:#475569;
font-size:11px;
font-weight:600;
padding:4px 10px;
border-radius:12px;
border:1px solid #e2e8f0;
}

.member-connect-btn{
display:block;
width:100%;
text-align:center;
background:linear-gradient(135deg, #ff3157, #ff5374);
color:white;
padding:13px;
border-radius:50px;
font-size:13px;
font-weight:700;
text-decoration:none;
box-shadow:0 8px 20px rgba(255,49,87,.25);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-connect-btn:hover{
transform:translateY(-2px);
box-shadow:0 12px 25px rgba(255,49,87,.35);
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   (TABLETS, DESKTOPS, & MOBILE DEVICES)
   ========================================== */

/* ==========================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   (DESKTOPS, TABLETS & MOBILE DEVICES)
   ========================================== */

/* LARGE TABLETS & SMALL LAPTOPS (max-width: 1200px) */
@media (max-width: 1200px) {
    .header {
        padding: 15px 30px;
    }

    .hero {
        flex-direction: column;
        padding: 30px 30px 40px;
        gap: 25px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-content p {
        margin: 20px auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .top-label-container {
        align-items: center;
    }

    .hero-middle-box {
        width: 100%;
        max-width: 220px;
        margin: 10px auto;
    }

    .hero-image {
        width: 100%;
        margin-top: 10px;
    }

    .yellow-panel, .yellow-header-bar {
        display: none;
    }

    .section-block {
        flex-direction: column;
        padding: 50px 30px;
        text-align: center;
    }

    .meet-image-col, .meet-content-col,
    .dynamic-content-col, .dynamic-image-col,
    .phone-image-col, .phone-content-col,
    .story-content-col, .story-image-col {
        width: 100%;
    }

    .stats-row {
        justify-content: center;
    }

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MEDIUM TABLETS & PORTRAIT TABLETS (max-width: 992px) */
@media (max-width: 992px) {
    .header {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
    }

    .header-actions {
        justify-content: center;
        width: 100%;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 25px;
        gap: 20px;
    }

    .filter-bar-card {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .filter-group.search-group {
        grid-column: 1 / -1;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .auth-layout-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .auth-featured-img {
        max-width: 360px;
    }

    .combined-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .combined-right-col {
        position: static;
    }

    .full-cover-img {
        max-width: 440px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }

    .about-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 25px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .legal-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-sidebar {
        position: static;
        width: 100%;
    }
}

/* SMALL TABLETS & MOBILE PHONES (max-width: 768px) */
@media (max-width: 768px) {
    .page-bg {
        padding: 12px 8px;
    }

    .main-card {
        border-radius: 20px;
    }

    .brand-logo-img {
        height: 48px;
        max-height: 52px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .join-btn {
        padding: 15px 32px;
        font-size: 13px;
        width: 100%;
        max-width: 320px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand-col {
        align-items: center;
    }

    .footer-logo-link {
        margin: 0 auto;
    }

    .footer-about-text {
        text-align: center;
    }

    .age-badge {
        margin: 0 auto;
    }

    .footer-col h4::after {
        margin: 6px auto 0;
    }

    .footer-links {
        align-items: center;
    }

    .footer-cta {
        text-align: center;
    }

    .members-filter-section, .members-grid-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .filter-bar-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-number {
        font-size: 34px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .auth-section {
        padding: 30px 15px;
    }

    .auth-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .form-grid-2, .social-auth-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 20px 25px;
    }
}

/* SMALL MOBILE DEVICES (max-width: 480px) */
@media (max-width: 480px) {
    .page-bg {
        padding: 6px 4px;
    }

    .main-card {
        border-radius: 16px;
    }

    .brand-logo-img {
        height: 40px;
        max-height: 44px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .top-label {
        font-size: 12px;
    }

    .top-label-underline {
        width: 120px;
    }

    .success-badge {
        width: 100%;
        justify-content: center;
    }

    .c1 {
        width: 220px;
        height: 220px;
    }

    .c2 {
        width: 260px;
        height: 260px;
    }

    .about-stats-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .member-avatar-box {
        height: 240px;
    }

    .member-info h3 {
        font-size: 17px;
    }
}