/* =====================================================
   PROMEE Landing Page
   Version 1.0
====================================================== */

:root{

    --primary:#FF4D5A;
    --primary-dark:#EB3948;
    --secondary:#6C63FF;

    --dark:#18181B;
    --text:#444;
    --gray:#6B7280;
    --light:#F7F8FC;
    --white:#FFFFFF;

    --border:#ECECEC;

    --radius:18px;
    --radius-lg:32px;

    --shadow:
        0 15px 40px rgba(0,0,0,.08);

    --transition:.35s ease;

    --container:1200px;

}

/* ===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#fff;

    color:var(--dark);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

}

.container{

    width:min(100% - 48px,var(--container));

    margin:auto;

}

/* =====================================================
TYPOGRAPHY
====================================================== */

h1{

    font-size:64px;

    line-height:1.05;

    font-weight:800;

}

h2{

    font-size:46px;

    line-height:1.2;

    font-weight:800;

}

h3{

    font-size:24px;

    font-weight:700;

}

h4{

    font-size:18px;

    font-weight:700;

}

p{

    color:var(--gray);

    font-size:17px;

}

span{

    color:inherit;

}

/* =====================================================
SECTION
====================================================== */

section{

    padding:110px 0;

}

.section-label{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    background:#FFF2F3;

    color:var(--primary);

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:24px;

}

.section-label.light{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.section-title{

    max-width:700px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title span{

    color:var(--primary);

}

.section-title p{

    font-size:18px;

}

/* =====================================================
BUTTON
====================================================== */

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:0 20px 40px rgba(255,77,90,.25);

}

.btn-outline{

    border:2px solid #E5E7EB;

    color:var(--dark);

}

.btn-outline:hover{

    border-color:var(--primary);

    color:var(--primary);

}

.btn-white{

    background:#fff;

    color:var(--primary);

}

.btn-white:hover{

    transform:translateY(-3px);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/* =====================================================
HEADER
====================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:88px;

}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
    color:var(--dark);
}

.logo img{
    height:48px;
    width:auto;
    display:block;
}

.logo span{
    font-size:28px;
    font-weight:800;
    color:var(--primary);
}

.nav-menu{

    display:flex;

    gap:42px;

}

.nav-menu a{

    color:#555;

    font-weight:600;

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.nav-action{

    display:flex;

    align-items:center;

    gap:18px;

}

.login-btn{

    font-weight:700;

}

.menu-toggle{

    display:none;

    font-size:32px;

}

/* =====================================================
HERO
====================================================== */

.hero{

    padding-top:180px;

    overflow:hidden;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-content h1{

    margin-bottom:26px;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    font-size:20px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:48px;

}

.joined-users{

    display:flex;

    align-items:center;

    gap:18px;

}

.avatars{

    display:flex;

}

.avatars img{

    width:54px;

    height:54px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #fff;

    margin-right:-15px;

    box-shadow:var(--shadow);

}

.phone-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

}

.phone-wrapper>img{

    width:370px;

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.18));

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:18px;

    padding:16px;

    display:flex;

    gap:15px;

    align-items:center;

    box-shadow:var(--shadow);

}

.card-message{

    top:25%;

    left:-30px;

}

.card-match{

    bottom:18%;

    right:-25px;

}

.icon{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F3F4F6;

    font-size:22px;

}

.heart{

    background:#FFE5E7;

}

/* =====================================================
FEATURES
====================================================== */

.features{
    background:var(--light);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.feature-card{
    background:#fff;
    border-radius:24px;
    padding:40px 32px;
    transition:var(--transition);
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    border:1px solid transparent;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#FFE1E4;
    box-shadow:0 30px 60px rgba(255,77,90,.15);
}

.feature-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    background:#FFF1F2;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:28px;
}

.feature-card h3{
    margin-bottom:18px;
}

.feature-card p{
    line-height:1.8;
}

/* =====================================================
COMMUNITY
====================================================== */

.community{
    background:#fff;
}

.community-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.community-image{
    position:relative;
}

.community-image img{
    border-radius:28px;
    box-shadow:0 35px 70px rgba(0,0,0,.12);
}

.community-content h2{
    margin:20px 0;
}

.community-content h2 span{
    color:var(--primary);
}

.community-content>p{
    margin-bottom:40px;
    font-size:18px;
}

.community-list{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.community-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.check{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:20px;
}

.community-item h4{
    margin-bottom:8px;
}

/* =====================================================
EXPERIENCE
====================================================== */

.experience{
    background:#FAFAFC;
}

.experience-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}

.experience-image img{
    border-radius:32px;
    box-shadow:0 40px 80px rgba(0,0,0,.12);
}

.experience-content h2{
    margin:18px 0 24px;
}

.experience-content h2 span{
    color:var(--primary);
}

.experience-content>p{
    margin-bottom:45px;
    font-size:18px;
}

.experience-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.experience-item{
    display:flex;
    gap:22px;
    align-items:flex-start;
}

.number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#FFF2F3;
    color:var(--primary);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:800;
    min-width:60px;
}

.experience-item h4{
    margin-bottom:8px;
}

/* =====================================================
CTA
====================================================== */

.cta{
    padding:120px 0;
}

.cta-box{
    background:linear-gradient(135deg,#FF5A67,#FF3C54);
    border-radius:40px;
    padding:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    overflow:hidden;
    position:relative;
}

.cta-box::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    left:-120px;
    top:-120px;
}

.cta-box::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-180px;
    bottom:-220px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content h2{
    color:#fff;
    margin:20px 0;
}

.cta-content p{
    color:rgba(255,255,255,.9);
    max-width:520px;
}

.cta-action{
    display:flex;
    flex-direction:column;
    gap:18px;
    position:relative;
    z-index:2;
}

/* =====================================================
FOOTER
====================================================== */

.footer{
    background:#111827;
    color:#fff;
    padding:90px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    margin-bottom:70px;
}

.footer-brand p{
    color:#C9CDD5;
    margin-top:24px;
    max-width:380px;
}

.footer h4{
    margin-bottom:24px;
    color:#fff;
}

.footer ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer ul a{
    color:#C8CBD4;
    transition:.3s;
}

.footer ul a:hover{
    color:#fff;
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-bottom p{
    color:#9CA3AF;
}

.socials{
    display:flex;
    gap:24px;
}

.socials a{
    color:#C8CBD4;
    transition:.3s;
}

.socials a:hover{
    color:#fff;
}

/* =====================================================
ANIMATION
====================================================== */

@keyframes floatUp{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content{
    animation:fadeUp .8s ease;
}

.hero-image{
    animation:fadeUp 1s ease;
}

.card-message{
    animation:floatUp 4s ease-in-out infinite;
}

.card-match{
    animation:floatUp 4s ease-in-out infinite;
    animation-delay:1.5s;
}

.feature-card,
.community-image img,
.experience-image img,
.cta-box{

    transition:.4s ease;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.community-image img:hover,
.experience-image img:hover{

    transform:scale(1.02);

}

/* =====================================================
TABLET
====================================================== */

@media (max-width:1100px){

.hero-grid,
.community-grid,
.experience-grid{

    grid-template-columns:1fr;
    gap:60px;

}

.hero-content{

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.joined-users{

    justify-content:center;

}

.hero-image{

    order:-1;

}

.feature-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

.cta-box{

    flex-direction:column;
    text-align:center;

}

.cta-action{

    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;

}

}

/* =====================================================
MOBILE
====================================================== */

@media (max-width:768px){

.container{

    width:calc(100% - 32px);

}

section{

    padding:70px 0;

}

h1{

    font-size:42px;

}

h2{

    font-size:34px;

}

p{

    font-size:16px;

}

.nav-menu{

    position:fixed;

    top:88px;
    left:-100%;

    width:100%;

    background:#fff;

    flex-direction:column;

    padding:30px;

    gap:28px;

    transition:.35s;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.nav-menu.active{

    left:0;

}

.nav-action{

    display:none;

}

.menu-toggle{

    display:block;

}

.hero{

    padding-top:130px;

}

.hero-grid{

    gap:40px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn{

    width:100%;

}

.phone-wrapper>img{

    width:270px;

}

.card-message{

    top:10px;
    left:0;

    transform:scale(.9);

}

.card-match{

    right:0;
    bottom:30px;

    transform:scale(.9);

}

.feature-grid{

    grid-template-columns:1fr;

}

.feature-card{

    padding:32px 26px;

}

.community-grid,
.experience-grid{

    gap:40px;

}

.community-list,
.experience-list{

    gap:18px;

}

.community-item,
.experience-item{

    align-items:flex-start;

}

.number{

    width:52px;
    height:52px;
    min-width:52px;

    font-size:18px;

}

.cta{

    padding:80px 0;

}

.cta-box{

    padding:45px 28px;

    border-radius:28px;

}

.cta-action{

    width:100%;

    flex-direction:column;

}

.cta-action .btn{

    width:100%;

}

.footer{

    text-align:center;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.footer-bottom{

    flex-direction:column;

}

.socials{

    justify-content:center;

}

}

/* =====================================================
SMALL PHONE
====================================================== */

@media (max-width:480px){

h1{

    font-size:36px;

}

h2{

    font-size:30px;

}

.logo{

    font-size:22px;

}

.phone-wrapper>img{

    width:220px;

}

.floating-card{

    display:none;

}

.section-title{

    margin-bottom:45px;

}

}

/* =====================================
Reveal Animation
===================================== */

.feature-card,
.community-content,
.community-image,
.experience-content,
.experience-image,
.cta-box{

    opacity:0;

    transform:translateY(60px);

    transition:.8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* =====================================
Navbar Active
===================================== */

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a.active::after{

    content:"";

    display:block;

    width:100%;

    height:2px;

    background:var(--primary);

    margin-top:5px;

}

/* ======================================
   PRIVACY & TERMS PAGE
====================================== */

.page-header{

    padding:180px 0 80px;

    background:linear-gradient(180deg,#FFF6F7,#FFFFFF);

    text-align:center;

}

.page-header h1{

    margin-bottom:15px;

}

.page-header p{

    color:var(--gray);

}

.privacy-policy{

    padding:90px 0 120px;

}

.privacy-content{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.privacy-content h3{

    margin-top:45px;

    margin-bottom:18px;

    color:var(--dark);

    font-size:28px;

}

.privacy-content h4{

    margin-top:24px;

    margin-bottom:10px;

    color:var(--primary);

    font-size:20px;

}

.privacy-content p{

    margin-bottom:18px;

    line-height:1.9;

    color:#555;

}

.privacy-content hr{

    margin:50px 0;

    border:none;

    border-top:1px solid #ECECEC;

}

@media(max-width:768px){

    .privacy-content{

        padding:35px 25px;

    }

}