/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* BODY */
body {
    background: linear-gradient(135deg, #0a0a0f, #0f1117);
    color: #e6e6e6;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 15, 0.3);
    z-index: 10;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #ccc;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8%;
}

/* GLASS UI */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    max-width: 700px;
    width: 100%;
}

/* CTA */
.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #824678, #5b6cff);
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* SECTIONS */
.section {
    padding: 100px 8%;
    display: flex;
    justify-content: center;
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #888;
}

/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Tablet */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 20px 5%;
    }
}

/* Phone */
@media (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .glass-card {
        padding: 25px;
    }

    .hero {
        padding-top: 120px;
    }
}
