.ai-dir-container-cd14a6e5 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #333333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafbfc;
}

/* Header */
.ai-dir-header-cd14a6e5 {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}
.ai-dir-title-cd14a6e5 {
    font-size: 2.5rem;
    color: #1a1e36;
    margin-bottom: 10px;
    font-weight: 800;
}
.ai-dir-subtitle-cd14a6e5 {
    font-size: 1.1rem;
    color: #687385;
}

/* Controls */
.ai-dir-controls-cd14a6e5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.ai-dir-search-wrapper-cd14a6e5 {
    width: 100%;
}
.ai-dir-search-input-cd14a6e5 {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.ai-dir-search-input-cd14a6e5:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.ai-dir-filter-strip-cd14a6e5 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ai-dir-pill-cd14a6e5 {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.ai-dir-pill-cd14a6e5:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}
.ai-dir-pill-cd14a6e5.active {
    background-color: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

/* Grid & Cards */
.ai-dir-grid-cd14a6e5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.ai-dir-card-cd14a6e5 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.ai-dir-card-cd14a6e5:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.ai-dir-card-header-cd14a6e5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.ai-dir-card-title-cd14a6e5 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 0;
    font-weight: 700;
}
.ai-dir-card-price-cd14a6e5 {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}
.ai-dir-card-price-cd14a6e5.freemium {
    background-color: #e6fffa;
    color: #047481;
}
.ai-dir-card-price-cd14a6e5.paid {
    background-color: #fef3c7;
    color: #92400e;
}
.ai-dir-card-desc-cd14a6e5 {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.ai-dir-card-footer-cd14a6e5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 16px;
}
.ai-dir-card-tag-cd14a6e5 {
    font-size: 0.75rem;
    background-color: #edf2f7;
    color: #4a5568;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}
.ai-dir-card-btn-cd14a6e5 {
    font-size: 0.85rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.ai-dir-card-btn-cd14a6e5:hover {
    color: #1d4ed8;
}

/* Guide Section */
.ai-dir-guide-section-cd14a6e5 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
}
.ai-dir-guide-title-cd14a6e5 {
    font-size: 1.75rem;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 700;
}
.ai-dir-guide-steps-cd14a6e5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.ai-dir-step-cd14a6e5 {
    text-align: center;
}
.ai-dir-step-num-cd14a6e5 {
    background-color: #3b82f6;
    color: #ffffff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    font-weight: bold;
    font-size: 1.1rem;
}
.ai-dir-step-cd14a6e5 h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}
.ai-dir-step-cd14a6e5 p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.4;
    margin: 0;
}

/* CTA Section */
.ai-dir-cta-cd14a6e5 {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}
.ai-dir-cta-title-cd14a6e5 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.ai-dir-cta-desc-cd14a6e5 {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}
.ai-dir-cta-btn-cd14a6e5 {
    display: inline-block;
    background-color: #ffffff;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.2s;
}
.ai-dir-cta-btn-cd14a6e5:hover {
    background-color: #f1f5f9;
    transform: translateY(-1px);
}
