
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Poppins, sans-serif;
    background: #f8fbff;
    color: #1f2937;
}
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eef2ff;
    z-index: 100;
}
nav {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav img {
    height: 42px;
}
nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}
nav a {
    text-decoration: none;
    color: #334155;
}
.btn {
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}
.hero {
    max-width: 1200px;
    margin: auto;
    padding: 90px 30px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
h1{
    font-size:60px;
    line-height:1.18;      /* was 1.05 */
    padding-bottom:0.12em; /* prevents descenders from clipping */
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

hero-image{
    width:100%;
    max-width:320px;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius: 28px;
}

p {
    line-height: 1.8;
    color: #64748b;
}
.mock {
    /* height: 460px; */
    /* width: 460px; */
    border-radius: 28px;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.grid {
    max-width: 1200px;
    margin: auto;
    padding: 20px 24px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #eef2ff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-8px);
}
footer {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff;
    text-align: center;
    padding: 50px 24px;
    margin-top: 60px;
}
@media (max-width: 850px) {
    .hero {
        grid-template-columns: 1fr;
    }
    h1 {
        font-size: 45px;
    }
    nav ul {
        display: none;
    }
}


/* ===== Pricing Page ===== */
.pricing-hero{
    display:block !important;
    max-width:1200px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:30px;
    margin-top:40px;
}

.price-card{
    background:#fff;
    border-radius:24px;
    padding:36px;
    box-shadow:0 20px 50px rgba(15,23,42,.08);
    border:1px solid #eef2ff;
    position:relative;
}

.price-card.pop{
    border:2px solid #6366f1;
}

.badge{
    position:absolute;
    top:-14px;
    right:24px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.amount{
    font-size:52px;
    font-weight:700;
    margin:20px 0;
}

.amount span{
    font-size:18px;
    color:#64748b;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:24px 0;
}

.price-card li{
    padding:10px 0;
    border-bottom:1px solid #eef2ff;
}

.price-card li::before{
    content:"✓ ";
    color:#16a34a;
    font-weight:700;
}

.cta{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:850px){
    .pricing-grid{
        grid-template-columns:1fr;
    }
}
