/* ===================================================================
   TOOL PAGES - COMING SOON
   =================================================================== */

.tool-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-hero);
    padding: 80px 20px;
}

.tool-hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #60a5fa, #60a5fa);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
    animation: toolIconFloat 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

@keyframes toolIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tool-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.tool-hero-description {
    font-size: 18px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 16px;
    font-weight: 700;
    animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}

@media (max-width: 768px) {
    .tool-hero {
        min-height: 400px;
        padding: 60px 20px;
    }
    .tool-hero-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
    .tool-hero-title {
        font-size: 32px;
    }
    .tool-hero-description {
        font-size: 16px;
    }
}
