@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #F7F8FC;
    color: #2A2A2A;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 600;
    color: #6A7FDB;
    margin-bottom: 20px;
}

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, #dfe6ff 0%, #e9ddff 50%, #ffe5f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.cta {
    background: #6A7FDB;
    padding: 14px 32px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta:hover {
    background: #5a6ec7;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.6;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #eef1f5;
    margin-top: 40px;
}
