.home-hero {
    height: min(78vh, 760px);
    min-height: 460px;
    border-radius: 0 0 22px 22px;
}

.home-hero .hero-title {
    letter-spacing: 0.6px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
}

.home-hero .hero-subtitle {
    max-width: 44ch;
}

.home-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
}

.value-card {
    background: #fff;
    border: 1px solid #e3e8f2;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(20, 24, 38, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(20, 24, 38, 0.14);
}

.value-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.value-card p {
    margin: 0;
    color: #5d6472;
    line-height: 1.5;
}

.home-cta-strip {
    margin: 0 28px 30px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(110deg, #17a5df 0%, #0f2538 60%, #e3008c 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 16px 34px rgba(19, 39, 59, 0.24);
}

.home-cta-strip h2 {
    margin: 0 0 8px;
    font-size: clamp(1.05rem, 2vw, 1.6rem);
}

.home-cta-strip p {
    margin: 0;
    opacity: 0.9;
}

.home-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111827;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    min-width: 178px;
}

@media (max-width: 900px) {
    .home-value-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .home-cta-strip {
        margin: 0 20px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}
