/**
 * Instagram EMV Calculator - CreatorFlow Free Tool
 * Brand Colors: #000000 (black), #d1fe17 (lime green)
 * NO box-shadows, NO gradients
 */

/* Coming Soon Section */
.coming-soon-section {
    background: #f9fafb;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d1fe17;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    font-family: 'Stack Sans Headline', sans-serif;
}

.coming-soon-badge svg {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coming-soon-text {
    font-size: 1.125rem;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tool Hero */
.tool-hero {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
}

.tool-hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.tool-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.tool-hero__badge svg {
    color: #E1306C;
}

.tool-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Stack Sans Headline', sans-serif;
}

.tool-hero__description {
    font-size: 1.125rem;
    color: #374151;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tool Info Section */
.tool-info {
    background: #ffffff;
    padding: 3.5rem 2rem;
}

.tool-info__container {
    max-width: 800px;
    margin: 0 auto;
}

.tool-info__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Stack Sans Headline', sans-serif;
}

.tool-info__subtitle {
    font-size: 1.375rem;
    font-weight: 700;
    color: #000000;
    margin: 2rem 0 1rem;
    font-family: 'Stack Sans Headline', sans-serif;
}

.tool-info__content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tool-hero {
        padding: 2rem 1.5rem;
    }

    .coming-soon-section {
        padding: 2rem 1.5rem;
    }

    .tool-info {
        padding: 2.5rem 1.5rem;
    }
}
