/* =========================
   Shortifye Landing Page
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#222;
}

/* Header */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#2563eb;
}

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

nav a:hover{
    color:#2563eb;
}

.login-btn{
    background:#2563eb;
    color:#fff;
    padding:10px 20px;
    border-radius:8px;
}

.login-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:white;
    padding:120px 20px 60px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.get-started{
    display:inline-block;
    margin-top:35px;
    padding:16px 35px;
    background:white;
    color:#2563eb;
    text-decoration:none;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.get-started:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* Sections */

section{
    padding:80px 8%;
}

section h2{
    text-align:center;
    color:#2563eb;
    font-size:36px;
    margin-bottom:40px;
}

/* Cards */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:#2563eb;
    margin-bottom:15px;
}

.card p{
    color:#666;
}

/* CTA */

.cta{
    background:#2563eb;
    color:white;
    text-align:center;
}

.cta h2{
    color:white;
}

.cta p{
    margin:20px 0;
    font-size:18px;
}

.cta .get-started{
    margin-top:20px;
}

/* Footer */

footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:25px;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

header{
    flex-direction:column;
    height:auto;
    padding:15px;
}

nav{
    margin-top:10px;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.hero{
    padding-top:160px;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:17px;
}

section{
    padding:60px 20px;
}

section h2{
    font-size:28px;
}

}