/* Tools Section */
.tools-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(217,18,119,0.05) 0%, rgba(67,97,238,0.05) 100%);
    border-top: 1px solid rgba(217,18,119,0.2);
    border-bottom: 1px solid rgba(67,97,238,0.2);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.tool-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d91277, #4361ee);
    opacity: 0;
    transition: opacity 0.3s;
}

.tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217,18,119,0.4);
    box-shadow: 0 20px 60px rgba(217,18,119,0.2);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card-featured {
    background: linear-gradient(135deg, rgba(217,18,119,0.1), rgba(67,97,238,0.1));
    border-color: rgba(217,18,119,0.3);
}

.tool-icon {
    font-size: 3em;
    margin-bottom: 16px;
}

.tool-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d91277, #ff1493);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tool-badge-new {
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #000;
}

.tool-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.tool-card p {
    color: #aaa;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.tool-stats {
    color: #00e676;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 16px;
}

.tool-cta {
    color: #d91277;
    font-weight: 600;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.tool-card:hover .tool-cta {
    gap: 12px;
}

@media (max-width: 768px) {
    .tools-section {
        padding: 60px 16px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 16px;
        margin-top: 30px;
    }
    
    .tool-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .tool-icon {
        font-size: 2.5em;
    }
    
    .tool-card h3 {
        font-size: 1.25em;
    }
}
