.page-home .hero {
    text-align: center;
    padding: 60px 0 48px;
}

.page-home .hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    max-width: 800px;
    margin: 0 auto 20px;
}

.page-home .hero-sub {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 32px;
}

.page-home .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-home .btn-large {
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 48px;
}

.page-home .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0 60px;
}

.page-home .card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    border: 1px solid #edf2f7;
}

.page-home .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
}

.page-home .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-home .card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-home .btn-primary.btn-large {
    padding: 12px 32px;
}

.page-home .footer-icp {
    margin-top: 10px;
}

.page-home .footer-icp a {
    color: #6b7280;
    text-decoration: none;
}

.page-home .footer-icp a:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-home .hero h1 {
        font-size: 2rem;
    }
    .page-home .hero-sub {
        font-size: 1rem;
    }
    .page-home .cards {
        flex-direction: column;
        align-items: center;
    }
    .page-home .card {
        max-width: 320px;
        width: 100%;
    }
}
