/* RESET */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background:#f8fafc;
    color:#0f172a;
    line-height:1.5;
}

/* HEADER */
.header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:10;
}

/* LOGO */
.logo {
    font-size:20px;
    font-weight:bold;
    color:#2563eb;
    display:flex;
    align-items:center;
    gap:6px;
}

.logo-icon {
    font-size:22px;
}

/* NAV */
.nav {
    display:flex;
    align-items:center;
    gap:10px;
}

.nav a {
    text-decoration:none;
}

/* BUTTON BASE */
.btn {
    padding:8px 14px;
    border-radius:6px;
    border:none;
    cursor:pointer;
    font-size:14px;
    transition:0.3s;
}

/* BUTTON VARIANTS */
.login-btn {
    background:none;
    border:1px solid #2563eb;
    color:#2563eb;
}

.signup-btn {
    background:#2563eb;
    color:white;
}

/* BUTTON HOVER */
.btn:hover {
    opacity:0.9;
    transform:translateY(-1px);
}

/* HERO */
.hero {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:60px 20px;
    gap:20px;
}

.hero-text {
    max-width:500px;
}

.hero h1 {
    font-size:34px;
}

.hero span {
    color:#2563eb;
}

.hero p {
    color:#64748b;
}

/* CTA */
.cta {
    padding:12px 22px;
    background:#2563eb;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}

.cta:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,0.3);
}

/* TEXT LINES */
.trust-lines {
    margin-top:10px;
    font-weight:500;
}

.sub-line {
    margin-top:12px;
    font-size:13px;
    color:#64748b;
}

/* STATS */
.stats {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    padding:40px 10px;
    gap:30px;
}

.stat {
    text-align:center;
    min-width:120px;
}

.stat h2 {
    color:#2563eb;
}

.stat p {
    color:#64748b;
}

/* FEATURES */
.features {
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    padding:40px 20px;
}

.feature {
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* STEPS */
.steps {
    padding:40px 20px;
    text-align:center;
}

.step-box {
    margin:10px 0;
    color:#64748b;
}

/* BOTTOM CTA */
.bottom {
    text-align:center;
    padding:50px 20px;
    background:#2563eb;
    color:white;
}

.bottom p {
    margin-top:10px;
    color:#cbd5f5;
}

.bottom a {
    text-decoration:none;
}

.bottom button {
    margin-top:15px;
    padding:12px 22px;
    border:none;
    border-radius:8px;
    background:white;
    color:#2563eb;
    cursor:pointer;
    transition:0.3s;
}

.bottom button:hover {
    background:#f1f5f9;
}

/* TABLET */
@media (min-width:768px){
    .hero h1 {
        font-size:42px;
    }

    .features {
        grid-template-columns:repeat(2,1fr);
    }
}

/* DESKTOP */
@media (min-width:1024px){
    .hero {
        flex-direction:row;
        justify-content:space-between;
        text-align:left;
        padding:80px 60px;
        gap:40px;
    }

    .hero-text {
        max-width:500px;
    }

    .features {
        grid-template-columns:repeat(3,1fr);
    }
}