.hit-section {
    /* Translates: bg-gradient-to-br from-yellow-50 via-white to-sage-50 */
    background: linear-gradient(135deg, #fefce8 0%, #ffffff 50%, #f4f7f5 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Header Typography --- */

.hit-subtitle {
    color: #5c8272;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-01);
}

.hit-desc {
    color: #3d574d;
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75;
    max-width: 48rem; /* max-w-3xl */
    margin: 0 auto 1.5rem auto;
}

.hit-italic {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    font-style: italic;
}

/* --- Product Card Styling --- */
.product-card {
    background-color: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    border: 1px solid #e8edeb;
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}

.product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* hover:shadow-2xl */
    transform: translateY(-8px); /* hover:-translate-y-2 */
}
.product-card i{
    color: #5c8272!important;
    font-size: 50px;
}
.card-icon {
    color: #5c8272;
    font-size: 3rem; /* text-5xl roughly */
    margin-bottom: 1.5rem;
    line-height: 1;
    display: inline-block;
}

.card-title {
    color: #2d3f37;
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-custom {
    background-color: #e8f0ec; /* sage-100 equivalent */
    color: #5c8272;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-desc {
    color: #3d574d;
    font-size: 1rem; /* text-base */
    line-height: 1.75;
    margin-bottom: 1rem;
    font-family: var(--font-01);
}

.card-note {
    color: #7a9b8d;
    font-size: 0.875rem; /* text-sm */
    line-height: 1.75;
    margin-bottom: 0;
    font-family: var(--font-01);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .hit-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}