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

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    background:#fff;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    max-width:1320px;
    margin:auto;
    padding:0 24px;
}


.header{
    padding:24px 0;
}

.navbar{
    background:#F3F5FF;
    border-radius:32px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:20px 30px;
}

.logo img{
    height:42px;
}

nav ul{
    display:flex;
    gap:40px;
}

nav a{
    color:#111827;
    font-size:15px;
    font-weight:600;
}



.hero-stage {
    position: relative;
    height: 1000px;
}

.hero-bg {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;

    height: 650px;

    border-radius: 60px;

    background: linear-gradient(
      90deg,
      #E7F7F8 0%,
      #EEF0FF 100%
    );
}

.store-icons{
    display:flex;
    gap:15px;
}

.store-icons img{
    height:42px;
}

.hero{
    padding-top:40px;
    /* padding-bottom:120px; */
}

.hero-content{
    text-align:center;
}

.hero-content h1{
    font-size:52;
    font-weight:800;
    line-height:1.1;
}

.hero-content   {
    background:linear-gradient(
        90deg,
        #22D3EE,
        #5B72FF
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    max-width:700px;
    margin:20px auto;

    color:#6B7280;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;

    margin-top:30px;
}

.hero-buttons img{
    height:52px;
}

.hero-wrapper{
    position:relative;

    height:900px;
    margin-top:70px;
}

.phone{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

.phone img{
    width:420px;
}

.user-card{
    position:absolute;
    width:170px;

    border-radius:24px;
    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

.user-card img{
    display:block;
}

.user1{
    left:120px;
    top:40px;
}

.user2{
    left:300px;
    top:350px;
}

.user3{
    left:380px;
    top:650px;
}
.user4{
    right:120px;
    top:40px;
}

.user5{
    right:300px;
    top:350px;
}

.user6{
    right:380px;
    top:650px;
}

.phone{
    position:absolute;
    left:50%;
    top:280px;

    transform:translateX(-50%);

    z-index:10;
}

.phone img{
    width:500px;
}

/* Privacy policy styles */
#privacy-policy.policy{
    padding: 48px 0 96px;
    background: #FFFFFF;
}

.policy-content{
    max-width: 900px;
    margin: 0 auto;
    padding: 36px;
    background: #FBFBFF;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(16,24,40,0.06);
    color: #0f172a;
    line-height: 1.6;
}

.policy-content h2{
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 10px;
    color: #0b1220;
}

.policy-content h3{
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
    color: #0b1220;
}

.policy-content p{
    margin-bottom: 12px;
    color: #374151;
    font-size: 15px;
}

.policy-content ul{
    margin: 8px 0 16px 20px;
    color: #374151;
}

.policy-content a{
    color: #4f46e5;
    text-decoration: underline;
}

@media (max-width: 800px){
    .policy-content{
        padding: 20px;
        margin: 0 12px;
    }

    .hero-content h1{font-size:28px}
}