/* Webflow & SaaS UI Style Core */
.wf-categories-section {
    padding: 80px 24px;
    background-color: #fcfbf7; /* Soft organic off-white background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wf-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wf-section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px auto;
}

.wf-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #002b64; /* Brand Navy */
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.wf-heading {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.wf-subtext {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Category Grid Display Layout */
.wf-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Individual Interactive Card UI */
.wf-category-card {
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.wf-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
    background: #f4f4f5;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.wf-card-title {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.wf-card-action {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.wf-card-action .arrow {
    transition: transform 0.2s ease;
}

/* Webflow Premium Hover Animations */
.wf-category-card:hover {
    transform: translateY(-5px);
    border-color: #002b64;
    box-shadow: 0 12px 24px rgba(0, 43, 100, 0.06);
}

.wf-category-card:hover .wf-card-icon {
    background: rgba(0, 43, 100, 0.05);
}

.wf-category-card:hover .wf-card-title {
    color: #002b64;
}

.wf-category-card:hover .wf-card-action {
    color: #002b64;
}

.wf-category-card:hover .wf-card-action .arrow {
    transform: translateX(4px);
}

/* Responsive Scaling for Tablets/Mobile */
@media (max-width: 768px) {
    .wf-categories-section {
        padding: 48px 16px;
    }
    .wf-heading {
        font-size: 28px;
    }
    .wf-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    .wf-category-card {
        padding: 16px;
    }
}