/* ===== GifNeo Homepage Styles ===== */

/* Hero */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    text-align: center;
}
.hero h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.2;
}
.hero h1 span { color: #ff5722; }
.hero p {
    font-size: 18px;
    color: #757575;
    max-width: 640px;
    margin: 0 auto 28px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    color: #757575;
}
.badge svg { width: 14px; height: 14px; }

/* Tools Grid */
.tools-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px 64px;
}
.tools-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 1100px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .tools-grid { grid-template-columns: 1fr; } }

.tool-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tool-card:hover {
    border-color: #ff5722;
    box-shadow: 0 4px 16px rgba(255, 87, 34, 0.12);
    transform: translateY(-2px);
}
.tool-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff3e0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tool-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ff5722;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tool-card h3 {
    font-size: 15px;
    font-weight: 600;
}
.tool-card p {
    font-size: 13px;
    color: #757575;
    line-height: 1.5;
}
.tool-card.featured {
    border-color: #ff5722;
    background: linear-gradient(135deg, #fff 60%, #fff3e0);
}
